mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
libplist: use swig2
libplist compilation with swig1 fails in stdenv-updates svn path=/nixpkgs/trunk/; revision=31324
This commit is contained in:
parent
b00d19d775
commit
2b20492775
1 changed files with 4 additions and 2 deletions
|
@ -1,14 +1,16 @@
|
|||
{ stdenv, fetchurl, cmake, libxml2, glib, swig, python }:
|
||||
{ stdenv, fetchurl, cmake, libxml2, swig2, python, glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libplist-1.3";
|
||||
|
||||
buildInputs = [ cmake swig ];
|
||||
buildNativeInputs = [ cmake swig2 ];
|
||||
|
||||
patches = [ ./swig.patch ];
|
||||
|
||||
propagatedBuildInputs = [ libxml2 glib python ];
|
||||
|
||||
passthru.swig = swig2;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://github.com/downloads/JonathanBeck/libplist/${name}.tar.bz2";
|
||||
sha256 = "1c5nwp9jbsp5kx8avmmsr5g7qdngnqlplh2sjbygmhydb6n8lb4q";
|
||||
|
|
Loading…
Reference in a new issue