a4275197ee
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/confclerk/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.6.4 with grep in /nix/store/r8p6g80aawh16ixw0f29k3y88z3gjwkh-confclerk-0.6.4 - directory tree listing: https://gist.github.com/bc73c35c3cf2429de20668a18ae13885
28 lines
732 B
Nix
28 lines
732 B
Nix
{ stdenv, fetchurl, qt4, qmake4Hook }:
|
|
|
|
let version = "0.6.4"; in
|
|
stdenv.mkDerivation {
|
|
name = "confclerk-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
|
|
sha256 = "10rhg44px4nvbkd3p341cmp2ds43jn8r4rvgladda9v8zmsgr2b3";
|
|
};
|
|
|
|
buildInputs = [ qt4 ];
|
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp src/bin/confclerk $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
description = "Offline conference schedule viewer";
|
|
homepage = http://www.toastfreeware.priv.at/confclerk;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [ ehmry ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|