uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
21
pkgs/development/tools/misc/nixbang/default.nix
Normal file
21
pkgs/development/tools/misc/nixbang/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue