3
0
Fork 0
forked from mirrors/nixpkgs

codeblocks: fix eval on non-linux, minor refactoring

This commit is contained in:
Vladimír Čunát 2014-05-13 20:07:13 +02:00
parent 9c8ee7a7e5
commit 93e65a4d53

View file

@ -2,6 +2,8 @@
, contribPlugins ? false, hunspell, gamin, boost
}:
with { inherit (stdenv.lib) optionalString optional optionals; };
stdenv.mkDerivation rec {
name = "${pname}-${stdenv.lib.optionalString contribPlugins "full-"}${version}";
version = "13.12";
@ -13,13 +15,13 @@ stdenv.mkDerivation rec {
};
buildInputs = [ automake autoconf libtool pkgconfig file zip wxGTK gtk ]
++ stdenv.lib.optionals contribPlugins [ hunspell gamin boost ];
++ optionals contribPlugins [ hunspell gamin boost ];
enableParallelBuilding = true;
patches = [ ./writable-projects.patch ];
preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file";
postConfigure = "substituteInPlace libtool --replace ldconfig ${stdenv.gcc.libc}/sbin/ldconfig";
postConfigure = optionalString stdenv.isLinux "substituteInPlace libtool --replace ldconfig ${stdenv.gcc.libc}/sbin/ldconfig";
configureFlags = [ "--enable-pch=no" ]
++ stdenv.lib.optional contribPlugins "--with-contrib-plugins";
++ optional contribPlugins "--with-contrib-plugins";
meta = with stdenv.lib; {
maintainers = [ maintainers.linquize ];