2010-11-01 18:33:24 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig, dbus_glib, libxml2, libxslt, getopt, nixUnstable, gettext, libiconv}:
|
2008-07-06 17:45:26 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-01-17 23:32:43 +01:00
|
|
|
name = "disnix-0.2pre25538";
|
2010-04-01 16:49:05 +02:00
|
|
|
src = fetchurl {
|
2011-01-17 23:32:43 +01:00
|
|
|
url = http://hydra.nixos.org/build/856742/download/4/disnix-0.2pre25538.tar.gz;
|
|
|
|
sha256 = "14cb5rhapsda2s22ys3d0i6qsfw4gnvc9483f5if3xr4hg6fgq0x";
|
2009-09-02 11:47:47 +02:00
|
|
|
};
|
2010-11-01 18:33:24 +01:00
|
|
|
buildInputs = [ pkgconfig dbus_glib libxml2 libxslt getopt nixUnstable ]
|
|
|
|
++ stdenv.lib.optional (!stdenv.isLinux) libiconv
|
|
|
|
++ stdenv.lib.optional (!stdenv.isLinux) gettext;
|
|
|
|
dontStrip = true;
|
|
|
|
NIX_STRIP_DEBUG = true;
|
2009-09-02 11:47:47 +02:00
|
|
|
}
|