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
23
pkgs/tools/networking/webwormhole/default.nix
Normal file
23
pkgs/tools/networking/webwormhole/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "webwormhole";
|
||||
version = "unstable-2021-01-16";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "saljam";
|
||||
repo = pname;
|
||||
rev = "c85e196c8a8a885815136aa8aee1958ad80a3bb5";
|
||||
sha256 = "D10xmBwmEbeR3nU4CmppFBzdeE4Pm2+o/Vb5Yd+pPtM=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-yK04gjDO6JSDcJULcbJBBuPBhx792JNn+B227lDUrWk=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Send files using peer authenticated WebRTC";
|
||||
homepage = "https://github.com/saljam/webwormhole";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ bbigras ];
|
||||
mainProgram = "ww";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue