summary refs log tree commit diff
path: root/pkgs/tools/graphics/barcode/default.nix
blob: b35b929da404af61a43f4970b58a5488c9d97f1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "${pname}-${version}";
  version = "0.99";
  pname = "barcode";
  src = fetchurl {
    url = "mirror://gnu/${pname}/${name}.tar.xz";
    sha256 = "1indapql5fjz0bysyc88cmc54y8phqrbi7c76p71fgjp45jcyzp8";
  };

  meta = with stdenv.lib; {
    description = "GNU barcode generator";
    maintainers = with maintainers; [ raskin ];
    platforms = with platforms; allBut darwin;
    downloadPage = "http://ftp.gnu.org/gnu/barcode/";
    updateWalker = true;
    inherit version;
    homepage = http://ftp.gnu.org/gnu/barcode/;
  };
}