mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
try: init at 0.1.0
This commit is contained in:
parent
aa094944a9
commit
8d089b4098
25
pkgs/tools/admin/try/default.nix
Normal file
25
pkgs/tools/admin/try/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenvNoCC, lib, fetchFromGitHub, fuse-overlayfs, util-linux, makeWrapper }:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "try";
|
||||
version = "0.1.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "binpash";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-TTKr22FwXfPL/YrFT+r12nFSxbk/47N6rrb3Vw/lSPI=";
|
||||
};
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dt $out/bin try
|
||||
wrapProgram $out/bin/try --prefix PATH : ${lib.makeBinPath [ fuse-overlayfs util-linux ]}
|
||||
runHook postInstall
|
||||
'';
|
||||
meta = with lib;{
|
||||
homepage = "https://github/binpash/try";
|
||||
description = "Lets you run a command and inspect its effects before changing your live system";
|
||||
maintainers = with maintainers; [ pasqui23 ];
|
||||
license = with licenses; [ mit ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -37508,6 +37508,8 @@ with pkgs;
|
||||
|
||||
trackballs = callPackage ../games/trackballs { };
|
||||
|
||||
try = callPackage ../tools/admin/try { };
|
||||
|
||||
tumiki-fighters = callPackage ../games/tumiki-fighters { };
|
||||
|
||||
tuxpaint = callPackage ../games/tuxpaint { };
|
||||
|
Loading…
Reference in New Issue
Block a user