Move NixosBootPkg into NixOS

svn path=/nixpkgs/trunk/; revision=33149
This commit is contained in:
Shea Levy 2012-03-16 11:53:50 +00:00
parent 46f9f71439
commit d30947aef3
2 changed files with 0 additions and 31 deletions

View file

@ -1,29 +0,0 @@
{ stdenv, edk2, fetchhg }:
let
src = fetchhg {
url = https://bitbucket.org/shlevy/nixosbootpkg;
tag = "1ff4c2891c8c1eb03677a6f8b04b8d05807ec198";
sha256 = "06zwy0g9a7g2sny7phvn2z76pb3wnw4vm9vsrjjaj7f7nzcsn13k";
};
in
stdenv.mkDerivation (edk2.setup "NixosBootPkg/NixosBootPkg.dsc" {
name = "NixosBootPkg-2012-03-15";
unpackPhase = ''
ln -sv ${src} NixosBootPkg
ln -sv ${edk2.src}/MdePkg .
'';
meta = {
description =
"Simple EFI app to load the kernel with NixOS-specific arguments";
homepage = http://www.shealevy.com;
license = "MIT";
maintainers = [ stdenv.lib.maintainers.shlevy ];
platforms = ["x86_64-linux" "i686-linux"];
};
})

View file

@ -927,8 +927,6 @@ let
ninka = callPackage ../development/tools/misc/ninka { };
NixosBootPkg = callPackage ../tools/misc/NixosBootPkg { };
nodejs = callPackage ../development/web/nodejs {};
ldns = callPackage ../development/libraries/ldns { };