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
18
pkgs/development/perl-modules/Mozilla-LDAP/default.nix
Normal file
18
pkgs/development/perl-modules/Mozilla-LDAP/default.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ lib, fetchurl, openldap, buildPerlPackage }:
|
||||
|
||||
buildPerlPackage rec {
|
||||
pname = "Mozilla-Ldap";
|
||||
version = "1.5.3";
|
||||
USE_OPENLDAP = 1;
|
||||
LDAPSDKDIR = openldap.dev;
|
||||
LDAPSDKLIBDIR = "${openldap.out}/lib";
|
||||
src = fetchurl {
|
||||
url = "https://ftp.mozilla.org/pub/directory/perldap/releases/${version}/src/perl-mozldap-${version}.tar.gz";
|
||||
sha256 = "0s0albdw0zvg3w37s7is7gddr4mqwicjxxsy400n1p96l7ipnw4x";
|
||||
};
|
||||
meta = {
|
||||
description = "Mozilla's ldap client library";
|
||||
homepage = "https://metacpan.org/release/perldap";
|
||||
license = with lib.licenses; [ mpl20 lgpl21Plus gpl2Plus ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue