3ea1c30846
in its interaction with the ‘dontStrip’ attribute. svn path=/nixpkgs/branches/stdenv-updates/; revision=30848
23 lines
735 B
Nix
23 lines
735 B
Nix
{ stdenv, fetchurl, pkgconfig, dbus_glib, libxml2, libxslt, getopt, nixUnstable, gettext, libiconv }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "disnix-0.3pre29816";
|
|
|
|
src = fetchurl {
|
|
url = http://hydra.nixos.org/build/1453079/download/4/disnix-0.3pre29816.tar.gz;
|
|
sha256 = "13gi0zs0a8pvgmgh3h431ydran3qf3px5m3d6vddd9b225kbkgwz";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig dbus_glib libxml2 libxslt getopt nixUnstable ]
|
|
++ stdenv.lib.optional (!stdenv.isLinux) libiconv
|
|
++ stdenv.lib.optional (!stdenv.isLinux) gettext;
|
|
|
|
dontStrip = true;
|
|
|
|
meta = {
|
|
description = "A distributed deployment extension for Nix";
|
|
license = "LGPLv2.1+";
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
};
|
|
}
|