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
22
pkgs/development/tools/pup/default.nix
Normal file
22
pkgs/development/tools/pup/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pup";
|
||||
version = "unstable-2019-09-19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ericchiang";
|
||||
repo = "pup";
|
||||
rev = "681d7bb639334bf485476f5872c5bdab10931f9a";
|
||||
sha256 = "1hx1k0qlc1bq6gg5d4yprn4d7kvqzagg6mi5mvb39zdq6c4y17vr";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Parsing HTML at the command line";
|
||||
homepage = "https://github.com/ericchiang/pup";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 yana ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue