byacc: 1.9 -> 20170201
Version bump + source URLs and homepage are updated
This commit is contained in:
parent
3878242ed0
commit
d9cf0256d4
@ -1,17 +1,23 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "byacc-1.9";
|
name = "byacc-${version}";
|
||||||
|
version = "20170201";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://invisible-island.net/byacc/byacc-20140715.tgz;
|
urls = [
|
||||||
sha256 = "1rbzx5ipkvih9rjfdfv6310wcr6mxjbdlsh9zcv5aaz6yxxxil7c";
|
"ftp://invisible-island.net/byacc/${name}.tgz"
|
||||||
|
"http://invisible-mirror.net/archives/byacc/${name}.tgz"
|
||||||
|
];
|
||||||
|
sha256 = "90b768d177f91204e6e7cef226ae1dc7cac831b625774cebd3e233a917754f91";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Berkeley YACC";
|
description = "Berkeley YACC";
|
||||||
homepage = http://dickey.his.com/byacc/byacc.html;
|
homepage = http://invisible-island.net/byacc/byacc.html;
|
||||||
license = stdenv.lib.licenses.publicDomain;
|
license = licenses.publicDomain;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user