nixpkgs/pkgs/development/libraries/gnustep/libobjc2/default.nix

31 lines
761 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake }:
let
version = "1.7";
in
stdenv.mkDerivation rec {
name = "libobjc2-${version}";
src = fetchurl {
url = "http://download.gna.org/gnustep/libobjc2-1.7.tar.bz2";
sha256 = "1h9wkm1x9wrzd3alm99bx710lrs9nb8h2x5jpxbqwgbgzzv4l6rs";
};
buildInputs = [ cmake ];
# since we don't support Objective-C++, we don't interoperate
# with C++ either
patches = [ ./removeCXXtests.patch ];
cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ];
meta = {
description = "Objective-C runtime for use with GNUstep";
homepage = http://gnustep.org/;
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ ashalkhakov matthewbauer ];
platforms = stdenv.lib.platforms.all;
};
}