summary refs log blame commit diff
path: root/pkgs/games/steam/update-runtime-shell.nix
blob: bb9362b9bf0512b0d2b4eafff9077913925eebe4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                      
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