43 lines
834 B
Nix
43 lines
834 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
base,
|
|
back,
|
|
make,
|
|
wrapGNUstepAppsHook,
|
|
gui,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gorm";
|
|
version = "1.4.0";
|
|
|
|
src = fetchzip {
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/dev-apps/gorm-${finalAttrs.version}.tar.gz";
|
|
sha256 = "sha256-B7NNRA3qA2PFbb03m58EBBONuIciLf6eU+YSR0qvaCo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
make
|
|
wrapGNUstepAppsHook
|
|
];
|
|
buildInputs = [
|
|
base
|
|
back
|
|
gui
|
|
];
|
|
|
|
meta = {
|
|
description = "Graphical Object Relationship Modeller is an easy-to-use interface designer for GNUstep";
|
|
homepage = "https://gnustep.github.io/";
|
|
license = lib.licenses.lgpl2Plus;
|
|
mainProgram = "Gorm";
|
|
maintainers = with lib.maintainers; [
|
|
ashalkhakov
|
|
matthewbauer
|
|
dblsaiko
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|