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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
699 B
Nix
Raw Normal View History

2022-05-26 02:13:25 +02:00
{ lib, mkDerivation, fetchurl, qtbase, qmake }:
2016-12-28 12:39:51 +01:00
2022-05-26 02:13:25 +02:00
mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "confclerk";
2022-05-26 02:13:25 +02:00
version = "0.7.1";
2016-12-28 12:39:51 +01:00
src = fetchurl {
url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
2022-05-26 02:13:25 +02:00
sha256 = "0l5i4d6lymh0k6gzihs41x4i8v1dz0mrwpga096af0vchpvlcarg";
2016-12-28 12:39:51 +01:00
};
2022-05-26 02:13:25 +02:00
buildInputs = [ qtbase ];
nativeBuildInputs = [ qmake ];
2016-12-28 12:39:51 +01:00
2022-05-26 02:13:25 +02:00
postInstall = ''
2016-12-28 12:39:51 +01:00
mkdir -p $out/bin
2022-05-26 02:13:25 +02:00
mv $out/confclerk $out/bin/
2016-12-28 12:39:51 +01:00
'';
meta = {
description = "Offline conference schedule viewer";
homepage = "http://www.toastfreeware.priv.at/confclerk";
2021-01-15 06:42:41 +01:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ehmry ];
platforms = lib.platforms.linux;
2016-12-28 12:39:51 +01:00
};
}