mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Enabling ACLs in kdelibs. Not in the cleanest way, but I wrote a comment about the hack.
svn path=/nixpkgs/trunk/; revision=19496
This commit is contained in:
parent
9b5743ceac
commit
87e357c167
|
@ -57,7 +57,7 @@ pkgs.recurseIntoAttrs (rec {
|
|||
kdelibs = import ./libs {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl bzip2 pcre fam libxml2 libxslt;
|
||||
inherit (pkgs) xz flex bison giflib jasper openexr aspell avahi shared_mime_info
|
||||
kerberos;
|
||||
kerberos acl attr;
|
||||
inherit automoc4 phonon strigi soprano;
|
||||
};
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, cmake, lib, perl
|
||||
, qt4, bzip2, pcre, fam, libxml2, libxslt, shared_mime_info, giflib, jasper
|
||||
, xz, flex, bison, openexr, aspell, avahi, kerberos
|
||||
, xz, flex, bison, openexr, aspell, avahi, kerberos, acl, attr
|
||||
, automoc4, phonon, strigi, soprano
|
||||
}:
|
||||
|
||||
|
@ -16,9 +16,12 @@ stdenv.mkDerivation {
|
|||
|
||||
buildInputs = [
|
||||
cmake perl qt4 stdenv.gcc.libc xz flex bison bzip2 pcre fam libxml2 libxslt
|
||||
shared_mime_info giflib jasper /* openexr */ aspell avahi kerberos
|
||||
shared_mime_info giflib jasper /* openexr */ aspell avahi kerberos acl attr
|
||||
automoc4 phonon strigi soprano
|
||||
];
|
||||
|
||||
# I don't know why cmake does not find the acl files (but finds attr files)
|
||||
cmakeFlags = [ "-DHAVE_ACL_LIBACL_H=ON" "-DHAVE_SYS_ACL_H=ON" ];
|
||||
|
||||
meta = {
|
||||
description = "KDE libraries";
|
||||
|
|
Loading…
Reference in a new issue