mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
564b218ef5
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.2.23 with grep in /nix/store/x5gjxvy65qxjln9hrv42f7ki1d60qjds-gorm-1.2.23 - found 1.2.23 in filename of file in /nix/store/x5gjxvy65qxjln9hrv42f7ki1d60qjds-gorm-1.2.23 - directory tree listing: https://gist.github.com/1ae30a61c919a26161284bdb24b06d7d
18 lines
463 B
Nix
18 lines
463 B
Nix
{ fetchurl, base, back, gsmakeDerivation, gui }:
|
|
let
|
|
version = "1.2.23";
|
|
in
|
|
gsmakeDerivation {
|
|
name = "gorm-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/dev-apps/gorm-${version}.tar.gz";
|
|
sha256 = "18pf9vvzvdk8bg4lhjb96y1kdkmb9ahmvrqv2581vn45pjxmmlnb";
|
|
};
|
|
buildInputs = [ base back gui ];
|
|
|
|
meta = {
|
|
description = "Graphical Object Relationship Modeller is an easy-to-use interface designer for GNUstep";
|
|
};
|
|
}
|