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/tools/networking/wakelan/default.nix
Normal file
27
pkgs/tools/networking/wakelan/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wakelan";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://ibiblioPubLinux/system/network/misc/${pname}-${version}.tar.gz";
|
||||
hash = "sha256-PfXrj4d2SHmatiPPFxjsxvhusML1HTRNjoYEQtzFzW8=";
|
||||
};
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/man/man1 $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Send a wake-on-lan packet";
|
||||
longDescription = ''
|
||||
WakeLan sends a properly formatted UDP packet across the
|
||||
network which will cause a wake-on-lan enabled computer to
|
||||
power on.
|
||||
'';
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = [ lib.maintainers.viric ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue