steamPackages: add update-runtime-shell.nix to update runtime

This commit is contained in:
Nikolay Amiantov 2015-12-04 00:51:09 +03:00
parent 67d0b8026e
commit f4bbd5b024

View file

@ -0,0 +1,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