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/corkscrew/default.nix
Normal file
23
pkgs/tools/networking/corkscrew/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, stdenv, fetchurl, automake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "corkscrew";
|
||||
version = "2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://agroman.net/corkscrew/corkscrew-${version}.tar.gz";
|
||||
sha256 = "0d0fcbb41cba4a81c4ab494459472086f377f9edb78a2e2238ed19b58956b0be";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
ln -sf ${automake}/share/automake-*/config.sub config.sub
|
||||
ln -sf ${automake}/share/automake-*/config.guess config.guess
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://agroman.net/corkscrew/";
|
||||
description = "A tool for tunneling SSH through HTTP proxies";
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue