add screen, does complain about getting/setting a config file in /etc
svn path=/nixpkgs/trunk/; revision=1207
This commit is contained in:
parent
cd4aa37b6b
commit
56c404a7a9
3
pkgs/tools/misc/screen/builder.sh
Normal file
3
pkgs/tools/misc/screen/builder.sh
Normal file
@ -0,0 +1,3 @@
|
||||
. $stdenv/setup
|
||||
|
||||
genericBuild
|
12
pkgs/tools/misc/screen/default.nix
Normal file
12
pkgs/tools/misc/screen/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{stdenv, fetchurl, ncurses}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "screen-4.0.2";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.nluug.nl/pub/gnu/screen/screen-4.0.2.tar.gz;
|
||||
md5 = "ed68ea9b43d9fba0972cb017a24940a1";
|
||||
};
|
||||
|
||||
buildInputs = [ncurses];
|
||||
}
|
Loading…
Reference in New Issue
Block a user