nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 mkDerivation,
4 fetchurl,
5 qtbase,
6 qmake,
7}:
8
9mkDerivation rec {
10 pname = "confclerk";
11 version = "0.7.2";
12
13 src = fetchurl {
14 url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
15 sha256 = "sha256-GgWvPHcQnQrK9SOC8U9F2P8kuPCn8I2EhoWEEMtKBww=";
16 };
17
18 buildInputs = [ qtbase ];
19 nativeBuildInputs = [ qmake ];
20
21 postInstall = ''
22 mkdir -p $out/bin
23 mv $out/confclerk $out/bin/
24 '';
25
26 meta = {
27 description = "Offline conference schedule viewer";
28 mainProgram = "confclerk";
29 homepage = "http://www.toastfreeware.priv.at/confclerk";
30 license = lib.licenses.gpl2;
31 maintainers = with lib.maintainers; [ ehmry ];
32 platforms = lib.platforms.linux;
33 };
34}