python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / confclerk / default.nix
blob84095c4165417fc83933bc9b0346adf8412bb5ae
1 { lib, mkDerivation, fetchurl, qtbase, qmake }:
3 mkDerivation rec {
4   pname = "confclerk";
5   version = "0.7.1";
7   src = fetchurl {
8     url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
9     sha256 = "0l5i4d6lymh0k6gzihs41x4i8v1dz0mrwpga096af0vchpvlcarg";
10   };
12   buildInputs = [ qtbase ];
13   nativeBuildInputs = [ qmake ];
15   postInstall = ''
16     mkdir -p $out/bin
17     mv $out/confclerk $out/bin/
18   '';
20   meta = {
21     description = "Offline conference schedule viewer";
22     homepage = "http://www.toastfreeware.priv.at/confclerk";
23     license = lib.licenses.gpl2;
24     maintainers = with lib.maintainers; [ ehmry ];
25     platforms = lib.platforms.linux;
26   };