nixpkgs/pkgs/applications/editors/gorm/default.nix

27 lines
867 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gnustep_base, gnustep_back, gsmakeDerivation, gnustep_gui
}:
let
version = "1.2.18";
in
gsmakeDerivation {
name = "gorm-${version}";
src = fetchurl {
url = "ftp://ftp.gnustep.org/pub/gnustep/dev-apps/gorm-${version}.tar.gz";
sha256 = "1vpzvmsnynlq5dv6rw9vbk1zzsim6z7b2kprrlm8dknyq0r1sdrq";
};
# patches = [ ./fix-gs-makefiles.patch ];
buildInputs = [ gnustep_base gnustep_back gnustep_gui ];
# propagatedBuildInputs = [ gnustep_base gnustep_back gnustep_gui ];
meta = {
description = "Gorm stands for Graphical Object Relationship Modeller and is an easy-to-use interface designer for GNUstep";
homepage = http://www.gnustep.org/experience/Gorm.html;
license = stdenv.lib.licenses.lgpl2Plus;
maintainers = with stdenv.lib.maintainers; [ ashalkhakov ];
platforms = stdenv.lib.platforms.linux;
};
}