2007-11-03 05:15:13 +01:00
|
|
|
args : with args;
|
2008-01-18 13:36:56 +01:00
|
|
|
let localDefs = builderDefs {
|
2007-11-03 05:15:13 +01:00
|
|
|
src =
|
|
|
|
fetchurl {
|
2008-03-07 11:48:54 +01:00
|
|
|
url = http://downloads.sourceforge.net/snd/snd-9.4.tar.gz;
|
2007-11-03 05:15:13 +01:00
|
|
|
sha256 = "0zqgfnkvkqxby1k74mwba1r4pb520glcsz5jjmpzm9m41nqnghmm";
|
|
|
|
};
|
|
|
|
|
2008-06-16 18:33:11 +02:00
|
|
|
buildInputs = [gtk glib pkgconfig libXpm gmp gettext libX11]
|
2007-11-03 05:15:13 +01:00
|
|
|
++ (lib.optional (args ? ruby) args.ruby)
|
|
|
|
++ (lib.optional (args ? mesa) args.mesa)
|
|
|
|
++ (lib.optional (args ? guile) args.guile)
|
|
|
|
++ (lib.optional (args ? libtool) args.libtool)
|
|
|
|
++ (lib.optional (args ? sndlib) args.sndlib)
|
|
|
|
;
|
|
|
|
configureFlags = ["--with-gtk" "--with-xpm"]
|
|
|
|
++ (lib.optional (args ? ruby) "--with-ruby" )
|
|
|
|
++ (lib.optional (args ? mesa) "--with-gl" )
|
|
|
|
++ (lib.optional (args ? guile) "--with-guile")
|
|
|
|
++ (lib.optional (args ? sndlib) "--with-midi" )
|
|
|
|
;
|
|
|
|
} null; /* null is a terminator for sumArgs */
|
2008-01-18 13:36:56 +01:00
|
|
|
in with localDefs;
|
2007-11-03 05:15:13 +01:00
|
|
|
let preBuild = FullDepEntry ("
|
|
|
|
cp config.log /tmp/snd-config.log
|
2008-06-16 18:33:11 +02:00
|
|
|
export NIX_LDFLAGS=\"$NIX_LDFLAGS -L${libX11}/lib -lX11 \"
|
2007-11-03 05:15:13 +01:00
|
|
|
") [minInit doUnpack];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "Snd-9.4";
|
|
|
|
builder = writeScript (name + "-builder")
|
2008-01-18 13:36:56 +01:00
|
|
|
(textClosure localDefs [doConfigure preBuild doMakeInstall doForceShare]);
|
2007-11-03 05:15:13 +01:00
|
|
|
meta = {
|
2008-01-30 20:49:42 +01:00
|
|
|
description = "Snd sound editor.";
|
|
|
|
homepage = http://ccrma.stanford.edu/software/snd;
|
2008-03-02 19:49:31 +01:00
|
|
|
inherit src;
|
2007-11-03 05:15:13 +01:00
|
|
|
};
|
|
|
|
}
|