Merge pull request #85673 from Mic92/nixos-shell
This commit is contained in:
commit
9df4eba48b
30
pkgs/tools/virtualization/nixos-shell/default.nix
Normal file
30
pkgs/tools/virtualization/nixos-shell/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, nix, fetchFromGitHub, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nixos-shell";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Mic92";
|
||||
repo = "nixos-shell";
|
||||
rev = version;
|
||||
sha256 = "1qk5a01vh6wbbkib8xr57w1j4l3n6xdjd46nsw9bsa444fzlc0wr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/nixos-shell \
|
||||
--prefix PATH : ${stdenv.lib.makeBinPath [ nix ]}
|
||||
'';
|
||||
|
||||
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Spawns lightweight nixos vms in a shell";
|
||||
inherit (src.meta) homepage;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mic92 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -20956,6 +20956,8 @@ in
|
||||
geoip = geoipWithDatabase;
|
||||
};
|
||||
|
||||
nixos-shell = callPackage ../tools/virtualization/nixos-shell {};
|
||||
|
||||
node-problem-detector = callPackage ../applications/networking/cluster/node-problem-detector { };
|
||||
|
||||
ninjas2 = callPackage ../applications/audio/ninjas2 {};
|
||||
|
Loading…
Reference in New Issue
Block a user