My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/misc/long-shebang/default.nix

21 lines
547 B

{ lib, stdenv, fetchurl }: let
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";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
};
}