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
29
pkgs/applications/networking/wg-bond/default.nix
Normal file
29
pkgs/applications/networking/wg-bond/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ pkgs, lib, rustPlatform, fetchFromGitLab, wireguard-tools, makeWrapper }:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "wg-bond";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cab404";
|
||||
repo = "wg-bond";
|
||||
rev = "v${version}";
|
||||
hash = "sha256:04k0maxy39k7qzcsqsv1byddsmjszmnyjffrf22nzbvml83p3l0y";
|
||||
};
|
||||
|
||||
cargoSha256 = "1nlzhkhk1y0jhj6n3wn4dm783ldsxn7dk0d2xjx6ylczf9z3gp12";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/wg-bond --set PATH ${
|
||||
lib.makeBinPath [ wireguard-tools ]
|
||||
}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wireguard configuration manager";
|
||||
homepage = "https://gitlab.com/cab404/wg-bond";
|
||||
changelog = "https://gitlab.com/cab404/wg-bond/-/releases#v${version}";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ cab404 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue