nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09 22 lines 602 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "${pname}-${version}"; 5 version = "0.99"; 6 pname = "barcode"; 7 src = fetchurl { 8 url = "mirror://gnu/${pname}/${name}.tar.xz"; 9 sha256 = "1indapql5fjz0bysyc88cmc54y8phqrbi7c76p71fgjp45jcyzp8"; 10 }; 11 12 hardeningDisable = [ "format" ]; 13 14 meta = with stdenv.lib; { 15 description = "GNU barcode generator"; 16 maintainers = with maintainers; [ raskin ]; 17 platforms = with platforms; allBut darwin; 18 downloadPage = "http://ftp.gnu.org/gnu/barcode/"; 19 updateWalker = true; 20 homepage = http://ftp.gnu.org/gnu/barcode/; 21 }; 22}