* Remove the NIX_STRIP_DEBUG flag. It was undocumented and confusing
in its interaction with the ‘dontStrip’ attribute. svn path=/nixpkgs/branches/stdenv-updates/; revision=30848
This commit is contained in:
@@ -1,16 +1,18 @@
|
||||
{stdenv, fetchurl, pkgconfig, dbus_glib, libxml2, libxslt, getopt, nixUnstable, gettext, libiconv}:
|
||||
{ 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;
|
||||
NIX_STRIP_DEBUG = true;
|
||||
|
||||
meta = {
|
||||
description = "A distributed deployment extension for Nix";
|
||||
|
||||
Reference in New Issue
Block a user