Added StumpWM

svn path=/nixpkgs/trunk/; revision=12566
This commit is contained in:
Michael Raskin 2008-08-09 20:21:33 +00:00
parent 83509605b3
commit eb50dd2c0d
3 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,42 @@
args :
let
lib = args.lib;
fetchurl = args.fetchurl;
noDepEntry = args.noDepEntry;
FullDepEntry = args.FullDepEntry;
buildInputs = lib.attrVals ["clisp" "texinfo"] args;
version = lib.getAttr ["version"] "0.9.4.1" args;
pkgName = "stumpwm";
in
rec {
src = fetchurl {
url = "http://download.savannah.gnu.org/releases/stumpwm/${pkgName}-${version}.tgz";
sha256 = "0wnkv3bgaj2bflh795ph6wiyhxzbhrif20vb40j6hjxxs9kywzqj";
};
inherit buildInputs;
configureFlags = ["--with-lisp=clisp"];
envVars = noDepEntry (''
export HOME="$NIX_BUILD_TOP";
'');
installation = FullDepEntry (''
ensureDir $out/bin
ensureDir $out/share/stumpwm/doc
ensureDir $out/share/info
cp stumpwm $out/bin
cp sample-stumpwmrc.lisp $out/share/stumpwm/doc
cp stumpwm.info $out/share/info
'') ["minInit" "defEnsureDir" "addInputs" "doMake"];
/* doConfigure should be specified separately */
phaseNames = ["envVars" "doConfigure" "doMake" "installation"];
name = "${pkgName}-" + version;
meta = {
description = "Common Lisp-based ratpoison-like window manager.";
};
}

View file

@ -494,6 +494,9 @@ rec {
mergeAttrs = fold ( x : y : x // y) {};
attrVals = nameList : attrSet :
map (x: builtins.getAttr x attrSet) nameList;
# Using f = a : b = b the result is similar to //
# merge attributes with custom function handling the case that the attribute
# exists in both sets

View file

@ -6681,6 +6681,10 @@ let pkgs = rec {
inherit fetchurl stdenv python git;
};
stumpwm = builderDefsPackage (import ../applications/window-managers/stumpwm) {
inherit clisp texinfo;
} null;
subversion = subversion14;
subversion14 = import ../applications/version-management/subversion-1.4.x {