nixpkgs/pkgs/tools/package-management/disnix/disnixos/default.nix
Eelco Dolstra 3ea1c30846 * 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
2011-12-12 14:02:12 +00:00

21 lines
544 B
Nix

{ stdenv, fetchurl, disnix, socat, pkgconfig }:
stdenv.mkDerivation {
name = "disnixos-0.2pre29928";
src = fetchurl {
url = http://hydra.nixos.org/build/1464065/download/3/disnixos-0.2pre29928.tar.gz;
sha256 = "0l7kszbpi8lzq95khi45fbq71l5csf8kamds4va6bxsyfwxrx6sm";
};
buildInputs = [ socat pkgconfig disnix ];
dontStrip = true;
meta = {
description = "Provides complementary NixOS infrastructure deployment to Disnix";
license = "LGPLv2.1+";
maintainers = [ stdenv.lib.maintainers.sander ];
};
}