pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / misc / long-shebang / default.nix
bloba1d0405186f43021c15337b847701770448158b8
1 { lib, stdenv, fetchurl }: let
2   version = "1.2.0";
3 in stdenv.mkDerivation {
4   pname = "long-shebang";
5   inherit version;
7   src = fetchurl {
8     url = "https://github.com/shlevy/long-shebang/releases/download/v${version}/long-shebang-${version}.tar.xz";
9     sha256 = "10h29w1c5bm0rlscyjiz1kzb134rn92as6v4y7i8mhhmdh6mmf79";
10   };
12   meta = {
13     description = "Tool for #! scripts with more than one argument";
15     homepage = "https://github.com/shlevy/long-shebang";
17     license = lib.licenses.mit;
19     platforms = lib.platforms.unix;
20     mainProgram = "long-shebang";
21   };