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
26
pkgs/servers/nats-server/default.nix
Normal file
26
pkgs/servers/nats-server/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "nats-server";
|
||||
version = "2.7.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "v${version}";
|
||||
owner = "nats-io";
|
||||
repo = pname;
|
||||
sha256 = "sha256-lMwFh+njzQr1hOJFbO3LnPdBK7U4XmX4F/6MlIRILlU=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-EEOvDOqMbqfB0S3Nf7RQMKGSZX802eqa3eGaNjUHxQ4=";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
passthru.tests.nats = nixosTests.nats;
|
||||
|
||||
meta = with lib; {
|
||||
description = "High-Performance server for NATS";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ swdunlop derekcollison ];
|
||||
homepage = "https://nats.io/";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue