gnustep: move to pkgs/desktops/gnustep

This commit is contained in:
Matthew Bauer
2016-08-16 21:53:45 +00:00
parent 63bd635f80
commit 2e5edbfd99
27 changed files with 1 additions and 1 deletions
@@ -0,0 +1,28 @@
{ 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;
};
}