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

30 lines
728 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchurl, qt4, qmake4Hook }:
2016-12-28 11:39:51 +00:00
let version = "0.6.4"; in
2016-12-28 11:39:51 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "confclerk";
inherit version;
2016-12-28 11:39:51 +00:00
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";
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
};
}