nixpkgs/pkgs/applications/misc/confclerk/default.nix

29 lines
733 B
Nix
Raw Normal View History

2016-12-28 11:39:51 +00:00
{ stdenv, fetchurl, qt4, qmake4Hook }:
let version = "0.6.4"; in
2016-12-28 11:39:51 +00:00
stdenv.mkDerivation {
name = "confclerk-${version}";
src = fetchurl {
url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
sha256 = "10rhg44px4nvbkd3p341cmp2ds43jn8r4rvgladda9v8zmsgr2b3";
2016-12-28 11:39:51 +00:00
};
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;
2016-12-28 11:39:51 +00:00
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ ehmry ];
2018-03-08 04:11:52 +00:00
platforms = stdenv.lib.platforms.linux;
2016-12-28 11:39:51 +00:00
};
}