290a5d916e
Based on "problems" from repology: https://repology.org/repository/nix_unstable/problems Mostly simple changes to reflect redirects.
24 lines
558 B
Nix
24 lines
558 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "byacc-${version}";
|
|
version = "20180609";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.invisible-island.net/byacc/${name}.tgz"
|
|
"https://invisible-mirror.net/archives/byacc/${name}.tgz"
|
|
];
|
|
sha256 = "173l9yai5yndbyn8nzdl6q11wv4x959bd0w392i82nfsqcz0pfsv";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Berkeley YACC";
|
|
homepage = https://invisible-island.net/byacc/byacc.html;
|
|
license = licenses.publicDomain;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|