python-linkme-wrapper

This commit is contained in:
Florian Friesdorf
2013-01-21 20:02:57 +01:00
parent d6a18fe4ae
commit 1fa2e7f9a9
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ stdenv }:
stdenv.mkDerivation {
name = "python-linkme-wrapper-1.0";
unpackPhase = "true";
installPhase = ''
mkdir -p $out/bin
cat ${./python-linkme-wrapper.sh} > $out/bin/.python-linkme-wrapper
chmod +x $out/bin/.python-linkme-wrapper
'';
}