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/tcp-cutter/default.nix
Normal file
23
pkgs/tools/networking/tcp-cutter/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tcp-cutter";
|
||||
version = "1.04";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.digitage.co.uk/digitage/files/cutter/${pname}-${version}.tgz";
|
||||
sha256 = "100iy31a3njif6vh9gfsqrm14hac05rrflla275gd4rkxdlnqcqv";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -D -m 0755 cutter $out/bin/tcp-cutter
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "TCP/IP Connection cutting on Linux Firewalls and Routers";
|
||||
homepage = "http://www.digitage.co.uk/digitage/software/linux-security/cutter";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.offline ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue