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/development/tools/misc/nixbang/default.nix

21 lines
533 B

{ lib, pythonPackages, fetchFromGitHub }:
pythonPackages.buildPythonApplication rec {
pname = "nixbang";
version = "0.1.2";
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;
};
}