mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
3085f5fcb8
Apparently some assembly has not been ported. This commit should fix
it:
b952a21abe (diff-e49aa4e60f8ccec1be46afc5e6ffcee5)
But no release has been made by the gnustep team yet!
30 lines
672 B
Nix
30 lines
672 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake }:
|
|
|
|
let
|
|
version = "1.8.1";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libobjc2-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gnustep";
|
|
repo = "libobjc2";
|
|
rev = "v${version}";
|
|
sha256 = "12v9pjg97h56mb114cqd22q1pdwhmxrgdw5hal74ddlrhiq1nzvi";
|
|
};
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Objective-C runtime for use with GNUstep";
|
|
homepage = http://gnustep.org/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ashalkhakov matthewbauer ];
|
|
platforms = platforms.unix;
|
|
badPlatforms = [ "aarch64-linux" ];
|
|
};
|
|
}
|