summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2026-01-21 04:34:34 +0100
committertv <tv@krebsco.de>2026-01-21 04:34:34 +0100
commit2aa700f9e7f157a2dbcb39c061677123889fb34a (patch)
treeceff687b32682888779ba3fc76579c0eff5226be /pkgs
parent556d2bbe602e8f359f2d7bb88002f0136dba2f3f (diff)
with-tmpdir: import from stockholm
stockholm commit f0b98bd0114df1e1ebb82ff300f9532d86b3eb18
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/simple/with-tmpdir.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/simple/with-tmpdir.nix b/pkgs/simple/with-tmpdir.nix
new file mode 100644
index 0000000..9862671
--- /dev/null
+++ b/pkgs/simple/with-tmpdir.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchgit, coreutils, dash, ... }:
+
+stdenv.mkDerivation {
+ name = "with-tmpdir-1";
+
+ src = fetchgit {
+ url = http://cgit.ni.krebsco.de/with-tmpdir;
+ rev = "3243c02ed8cd27a04c080bd39560204980f6c16a";
+ sha256 = "80ee6cafb2c337999ddcd1e41747d6256b7cfcea605358c2046eb7e3729555c6";
+ };
+
+ phases = [
+ "unpackPhase"
+ "installPhase"
+ ];
+
+ installPhase = ''
+ mkdir -p $out/bin
+
+ { echo '#! ${dash}/bin/dash'
+ echo 'OLDPATH=$PATH'
+ echo 'PATH=${coreutils}/bin'
+ sed '$s/^/#/' ./with-tmpdir
+ echo '(PATH=$OLDPATH; exec "$@")'
+ } > $out/bin/with-tmpdir
+
+ chmod +x $out/bin/with-tmpdir
+ '';
+}