about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/admin/try/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/admin/try/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/admin/try/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/admin/try/default.nix b/nixpkgs/pkgs/tools/admin/try/default.nix
new file mode 100644
index 000000000000..e44f92d1002b
--- /dev/null
+++ b/nixpkgs/pkgs/tools/admin/try/default.nix
@@ -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;
+  };
+}