2016-07-31 17:11:50 +00:00
|
|
|
{ stdenv, fetchurl }: let
|
2017-02-23 23:27:12 +00:00
|
|
|
version = "1.2.0";
|
2016-07-31 17:11:50 +00:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "long-shebang-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-14 14:58:44 +00:00
|
|
|
url = "https://github.com/shlevy/long-shebang/releases/download/v${version}/long-shebang-${version}.tar.xz";
|
2017-02-23 23:27:12 +00:00
|
|
|
sha256 = "10h29w1c5bm0rlscyjiz1kzb134rn92as6v4y7i8mhhmdh6mmf79";
|
2016-07-31 17:11:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|