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
27
pkgs/servers/kapowbang/default.nix
Normal file
27
pkgs/servers/kapowbang/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kapowbang";
|
||||
version = "0.7.0";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "BBVA";
|
||||
repo = "kapow";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-0ftdc3ol1g0WnZgicXl46Xpph4cUYk/G/eeu+9JnPyA=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-41Jk3aTe4EA5dwkriEo48QNJg2k3T/R/8i8XWcURcG8=";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/BBVA/kapow";
|
||||
description = "Expose command-line tools over HTTP";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ nilp0inter ];
|
||||
mainProgram = "kapow";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue