mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
25 lines
602 B
Nix
25 lines
602 B
Nix
{ stdenv, fetchurl, cmake, libxml2, swig2, python, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libplist-1.3";
|
|
|
|
nativeBuildInputs = [ 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";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://github.com/JonathanBeck/libplist;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
};
|
|
}
|