Add long-shebang tool

This commit is contained in:
Shea Levy 2016-07-31 13:11:50 -04:00
parent a28273df32
commit 03a8f723bd
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl }: let
version = "1.0.0";
in stdenv.mkDerivation {
name = "long-shebang-${version}";
src = fetchurl {
url = "https://github.com/shlevy/long-shebang/releases/download/v1.0.0/long-shebang-1.0.0.tar.xz";
sha256 = "15f5rmihj3r53rmalix1bn1agybbzrc3g2a9xzjyd4v3vfd2vckr";
};
meta = {
description = "A tool for #! scripts with more than one argument";
homepage = https://github.com/shlevy/long-shebang;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
};
}

View File

@ -823,6 +823,8 @@ in
interlock = callPackage ../servers/interlock {};
long-shebang = callPackage ../misc/long-shebang {};
mathics = pythonPackages.mathics;
mcrl = callPackage ../tools/misc/mcrl { };