2016-12-28 11:39:51 +00:00
|
|
|
{ stdenv, fetchurl, qt4, qmake4Hook }:
|
|
|
|
|
2018-04-08 00:37:02 +00:00
|
|
|
let version = "0.6.4"; in
|
2016-12-28 11:39:51 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "confclerk-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
|
2018-04-08 00:37:02 +00:00
|
|
|
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";
|
2017-08-01 20:03:30 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|