2021-01-15 05:42:41 +00:00
|
|
|
{ lib, stdenv, fetchurl, qt4, qmake4Hook }:
|
2016-12-28 11:39:51 +00:00
|
|
|
|
2018-04-08 01:37:02 +01:00
|
|
|
let version = "0.6.4"; in
|
2016-12-28 11:39:51 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "confclerk";
|
|
|
|
inherit version;
|
2016-12-28 11:39:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
|
2018-04-08 01:37:02 +01: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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.toastfreeware.priv.at/confclerk";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
|
|
platforms = lib.platforms.linux;
|
2016-12-28 11:39:51 +00:00
|
|
|
};
|
|
|
|
}
|