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
28
pkgs/development/libraries/libmhash/default.nix
Normal file
28
pkgs/development/libraries/libmhash/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mhash";
|
||||
version = "0.9.9.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
|
||||
sha256 = "1w7yiljan8gf1ibiypi6hm3r363imm3sxl1j8hapjdq3m591qljn";
|
||||
};
|
||||
|
||||
dontDisableStatic = true;
|
||||
|
||||
patches = [ ./autotools-define-conflict-debian-fix.patch ];
|
||||
|
||||
meta = {
|
||||
description = "Hash algorithms library";
|
||||
longDescription = ''
|
||||
Libmhash is a library that provides a uniform interface to several hash
|
||||
algorithms. It supports the basics for message authentication by
|
||||
following rfc2104 (HMAC). It also includes some key generation algorithms
|
||||
which are based on hash algorithms.
|
||||
'';
|
||||
homepage = "http://mhash.sourceforge.net";
|
||||
license = "LGPL";
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue