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