wrapFirefox: quote the makeWrapperArgs Bash array (#375122)
[NixPkgs.git] / pkgs / applications / misc / confclerk / default.nix
blob0d7a4131e6fe6008eec65d2717407ff6849f55e4
2   lib,
3   mkDerivation,
4   fetchurl,
5   qtbase,
6   qmake,
7 }:
9 mkDerivation rec {
10   pname = "confclerk";
11   version = "0.7.2";
13   src = fetchurl {
14     url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
15     sha256 = "sha256-GgWvPHcQnQrK9SOC8U9F2P8kuPCn8I2EhoWEEMtKBww=";
16   };
18   buildInputs = [ qtbase ];
19   nativeBuildInputs = [ qmake ];
21   postInstall = ''
22     mkdir -p $out/bin
23     mv $out/confclerk $out/bin/
24   '';
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   };