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
+17
View File
@@ -0,0 +1,17 @@
{ fetchurl, base, back, gsmakeDerivation, gui }:
let
version = "1.2.22";
in
gsmakeDerivation {
name = "gorm-${version}";
src = fetchurl {
url = "ftp://ftp.gnustep.org/pub/gnustep/dev-apps/gorm-${version}.tar.gz";
sha256 = "1mq5n65xd9bc4kppx19iijsgpz4crvhg7bfwbi9k78j159vclnmi";
};
buildInputs = [ base back gui ];
meta = {
description = "Graphical Object Relationship Modeller is an easy-to-use interface designer for GNUstep";
};
}