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/servers/hockeypuck/server.nix
Normal file
21
pkgs/servers/hockeypuck/server.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
||||
|
||||
let
|
||||
sources = (import ./sources.nix) { inherit fetchFromGitHub; };
|
||||
in
|
||||
buildGoModule {
|
||||
inherit (sources) pname version src;
|
||||
|
||||
modRoot = "src/hockeypuck/";
|
||||
vendorSha256 = null;
|
||||
doCheck = false; # Uses networking for tests
|
||||
|
||||
passthru.tests = nixosTests.hockeypuck;
|
||||
|
||||
meta = with lib; {
|
||||
description = "OpenPGP Key Server";
|
||||
homepage = "https://github.com/hockeypuck/hockeypuck";
|
||||
license = licenses.agpl3Plus;
|
||||
maintainers = [ maintainers.etu ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue