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

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

  hardeningDisable = [ "format" ];

  meta = with stdenv.lib; {
    description = "GNU barcode generator";
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.linux; # Maybe other non-darwin Unix
    downloadPage = "https://ftp.gnu.org/gnu/barcode/";
    updateWalker = true;
    homepage = https://www.gnu.org/software/barcode/;
    license = licenses.gpl3;
  };
}