2021-01-17 00:15:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }: let
|
2020-04-24 23:36:52 +00:00
|
|
|
version = "1.2.0";
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
pname = "long-shebang";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/shlevy/long-shebang/releases/download/v${version}/long-shebang-${version}.tar.xz";
|
|
|
|
sha256 = "10h29w1c5bm0rlscyjiz1kzb134rn92as6v4y7i8mhhmdh6mmf79";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A tool for #! scripts with more than one argument";
|
|
|
|
|
|
|
|
homepage = "https://github.com/shlevy/long-shebang";
|
|
|
|
|
2021-01-17 00:15:33 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-17 00:15:33 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|