mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
22 lines
542 B
Nix
22 lines
542 B
Nix
{ lib, pythonPackages, fetchFromGitHub }:
|
|
|
|
let version = "0.1.2"; in
|
|
pythonPackages.buildPythonApplication {
|
|
name = "nixbang-${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;
|
|
};
|
|
}
|