nixpkgs/pkgs/applications/networking/datovka/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
793 B
Nix
Raw Normal View History

{ lib
2019-11-10 11:21:49 +01:00
, mkDerivation
, fetchurl
, libxml2
, libdatovka
2019-11-10 11:21:49 +01:00
, qmake
, qtbase
, qtwebsockets
2019-11-10 11:21:49 +01:00
, qtsvg
, pkg-config
}:
mkDerivation rec {
pname = "datovka";
2024-01-28 18:53:58 +01:00
version = "4.23.4";
2019-11-10 11:21:49 +01:00
src = fetchurl {
url = "https://gitlab.nic.cz/datovka/datovka/-/archive/v${version}/datovka-v${version}.tar.gz";
2024-01-28 18:53:58 +01:00
sha256 = "sha256-xyRUm6DaxlIFmeskQuUMu6JV3QtzgOZf/pLiBNGUBRo=";
2019-11-10 11:21:49 +01:00
};
buildInputs = [ libdatovka qmake qtbase qtsvg libxml2 qtwebsockets ];
2019-11-10 11:21:49 +01:00
nativeBuildInputs = [ pkg-config ];
meta = with lib; {
2019-11-10 11:21:49 +01:00
description = "Client application for operating Czech government-provided Databox infomation system";
homepage = "https://www.datovka.cz/";
license = licenses.gpl3Plus;
2019-11-10 11:21:49 +01:00
maintainers = [ maintainers.mmahut ];
platforms = platforms.linux;
2023-11-27 02:17:53 +01:00
mainProgram = "datovka";
2019-11-10 11:21:49 +01:00
};
}