mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
e42507d182
gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
12 lines
279 B
Nix
12 lines
279 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "screen-4.0.2";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/screen-4.0.2.tar.gz;
|
|
md5 = "ed68ea9b43d9fba0972cb017a24940a1";
|
|
};
|
|
|
|
buildInputs = [ncurses];
|
|
}
|