Fix ratpoison dependencies

svn path=/nixpkgs/trunk/; revision=18166
This commit is contained in:
Michael Raskin
2009-11-05 21:53:37 +00:00
parent 82579d30d0
commit 4d02c927e6
5 changed files with 43 additions and 5 deletions
@@ -0,0 +1,26 @@
a :
let
s = import ./src-for-default.nix;
buildInputs = with a; [
gmp mpfr m4 binutils
];
in
rec {
src = a.fetchUrlFromSrcInfo s;
inherit (s) name;
inherit buildInputs;
configureFlags = [];
/* doConfigure should be removed if not needed */
phaseNames = ["doConfigure" "doMakeInstall"];
meta = {
description = "GNU Common Lisp compiler working via GCC";
maintainers = [
a.lib.maintainers.raskin
];
platforms = with a.lib.platforms;
all;
};
}