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

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

29 lines
729 B
Nix
Raw Normal View History

2022-05-26 00:13:25 +00:00
{ lib, mkDerivation, fetchurl, qtbase, qmake }:
2016-12-28 11:39:51 +00:00
2022-05-26 00:13:25 +00:00
mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "confclerk";
2024-04-27 23:51:20 +00:00
version = "0.7.2";
2016-12-28 11:39:51 +00:00
src = fetchurl {
url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
2024-04-27 23:51:20 +00:00
sha256 = "sha256-GgWvPHcQnQrK9SOC8U9F2P8kuPCn8I2EhoWEEMtKBww=";
2016-12-28 11:39:51 +00:00
};
2022-05-26 00:13:25 +00:00
buildInputs = [ qtbase ];
nativeBuildInputs = [ qmake ];
2016-12-28 11:39:51 +00:00
2022-05-26 00:13:25 +00:00
postInstall = ''
2016-12-28 11:39:51 +00:00
mkdir -p $out/bin
2022-05-26 00:13:25 +00:00
mv $out/confclerk $out/bin/
2016-12-28 11:39:51 +00:00
'';
meta = {
description = "Offline conference schedule viewer";
mainProgram = "confclerk";
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
};
}