mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
33 lines
733 B
Nix
33 lines
733 B
Nix
{ stdenv
|
|
, mkDerivation
|
|
, fetchurl
|
|
, libxml2
|
|
, libisds
|
|
, qmake
|
|
, qtbase
|
|
, qtsvg
|
|
, pkg-config
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "datovka";
|
|
version = "4.14.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://secure.nic.cz/files/datove_schranky/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0jinxsm2zw77294vz9pjiqpgpzdwx5nijsi4nqzxna5rkmwdyxk6";
|
|
};
|
|
|
|
buildInputs = [ libisds qmake qtbase qtsvg libxml2 ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Client application for operating Czech government-provided Databox infomation system";
|
|
homepage = "https://www.datovka.cz/";
|
|
license = licenses.lgpl3;
|
|
maintainers = [ maintainers.mmahut ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|