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/development/libraries/libtap/default.nix
Normal file
29
pkgs/development/libraries/libtap/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config, cmake, perl }:
|
||||
|
||||
with lib;
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "libtap";
|
||||
version = "1.14.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://web-cpan.shlomifish.org/downloads/${pname}-${version}.tar.xz";
|
||||
sha256 = "1ga7rqmppa8ady665736cx443icscqlgflkqmxd4xbkzypmdj9bk";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
propagatedBuildInputs = [ cmake perl ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library to implement a test protocol";
|
||||
longDescription = ''
|
||||
libtap is a library to implement the Test Anything Protocol for
|
||||
C originally created by Nik Clayton. This is a maintenance
|
||||
branch by Shlomi Fish.
|
||||
'';
|
||||
homepage = "https://www.shlomifish.org/open-source/projects/libtap/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue