about summary refs log tree commit diff
path: root/pkgs/games/steam/update-runtime-shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/steam/update-runtime-shell.nix')
-rw-r--r--pkgs/games/steam/update-runtime-shell.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/pkgs/games/steam/update-runtime-shell.nix b/pkgs/games/steam/update-runtime-shell.nix
deleted file mode 100644
index bb9362b9bf05..000000000000
--- a/pkgs/games/steam/update-runtime-shell.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-with import <nixpkgs> {};
-
-(python2.buildEnv.override {
-  extraLibs = with python2Packages;
-    [ debian
-    ];
-  postBuild = ''
-    mkdir -p $out/bin
-    for i in ${nixUnstable}/bin/*; do
-      ln -s $i $out/bin/$(basename $i)
-    done
-  '';
-}).env