depot/third_party/nixpkgs/pkgs/applications/misc/confclerk/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

28 lines
730 B
Nix

{ lib, mkDerivation, fetchurl, qtbase, qmake }:
mkDerivation rec {
pname = "confclerk";
version = "0.7.1";
src = fetchurl {
url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
sha256 = "0l5i4d6lymh0k6gzihs41x4i8v1dz0mrwpga096af0vchpvlcarg";
};
buildInputs = [ qtbase ];
nativeBuildInputs = [ qmake ];
postInstall = ''
mkdir -p $out/bin
mv $out/confclerk $out/bin/
'';
meta = {
description = "Offline conference schedule viewer";
mainProgram = "confclerk";
homepage = "http://www.toastfreeware.priv.at/confclerk";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ehmry ];
platforms = lib.platforms.linux;
};
}