about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/zint/default.nix
blob: e7663009c59dd48bc41ccc2a32114396c90cde08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ lib
, stdenv
, fetchFromGitHub
, wrapQtAppsHook
, cmake
, qtbase
, qttools
, nix-update-script
}:

stdenv.mkDerivation rec {
  pname = "zint";
  version = "2.11.0";

  src = fetchFromGitHub {
    owner = "woo-j";
    repo = "zint";
    rev = version;
    sha256 = "sha256-DtfyXBBEDcltGUAutHl/ksRTTYmS7Ll9kjfgD7NmBbA=";
  };

  outputs = [ "out" "dev" ];

  nativeBuildInputs = [ cmake wrapQtAppsHook ];

  buildInputs = [ qtbase qttools ];

  postInstall = ''
    install -Dm644 $src/zint-qt.desktop $out/share/applications/zint-qt.desktop
    install -Dm644 $src/zint-qt.png $out/share/pixmaps/zint-qt.png
    install -Dm644 $src/frontend_qt/images/scalable/zint-qt.svg $out/share/icons/hicolor/scalable/apps/zint-qt.svg
  '';

  passthru.updateScript = nix-update-script {
    attrPath = pname;
  };

  meta = with lib; {
    description = "A barcode generating tool and library";
    longDescription = ''
      The Zint project aims to provide a complete cross-platform open source
      barcode generating solution. The package currently consists of a Qt based
      GUI, a CLI command line executable and a library with an API to allow
      developers access to the capabilities of Zint.
    '';
    homepage = "http://www.zint.org.uk";
    changelog = "https://github.com/woo-j/zint/blob/${version}/ChangeLog";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ azahi ];
  };
}