2015-04-02 09:21:53 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2010-10-08 02:11:57 -07:00
|
|
|
|
2015-04-02 09:21:53 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.99";
|
|
|
|
pname = "barcode";
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
|
2014-08-31 08:32:21 -07:00
|
|
|
sha256 = "1indapql5fjz0bysyc88cmc54y8phqrbi7c76p71fgjp45jcyzp8";
|
2010-10-08 02:11:57 -07:00
|
|
|
};
|
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-10 14:38:40 -08:00
|
|
|
|
2015-04-02 09:21:53 -07:00
|
|
|
meta = with stdenv.lib; {
|
2010-10-08 02:11:57 -07:00
|
|
|
description = "GNU barcode generator";
|
2015-04-02 09:21:53 -07:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2018-03-13 15:00:52 -07:00
|
|
|
platforms = platforms.linux; # Maybe other non-darwin Unix
|
2018-12-01 10:22:13 -08:00
|
|
|
downloadPage = "https://ftp.gnu.org/gnu/barcode/";
|
2014-08-31 08:32:21 -07:00
|
|
|
updateWalker = true;
|
2018-12-01 10:22:13 -08:00
|
|
|
homepage = https://www.gnu.org/software/barcode/;
|
2018-07-22 08:38:28 -07:00
|
|
|
license = licenses.gpl3;
|
2010-10-08 02:11:57 -07:00
|
|
|
};
|
2015-04-02 09:21:53 -07:00
|
|
|
}
|