summary refs log tree commit diff
path: root/pkgs/development/tools/misc/nixbang/default.nix
blob: 468623241bfdd9cdb1198ea7151308e0d73df17c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, pythonPackages, fetchFromGitHub }:

let version = "0.1.2"; in
pythonPackages.buildPythonApplication {
  pname = "nixbang";
  inherit version;
  namePrefix = "";

  src = fetchFromGitHub {
    owner = "madjar";
    repo = "nixbang";
    rev = version;
    sha256 = "1kzk53ry60i814wa6n9y2ni0bcxhbi9p8gdv10b974gf23mhi8vc";
  };

  meta = {
    homepage = "https://github.com/madjar/nixbang";
    description = "A special shebang to run scripts in a nix-shell";
    maintainers = [ lib.maintainers.madjar ];
    platforms = lib.platforms.all;
  };
}