nixpkgs/pkgs/desktops/gnustep/gorm/default.nix
Ryan Mulligan 564b218ef5 gnustep.gorm: 1.2.22 -> 1.2.23
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
2018-03-20 03:13:31 -07:00

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";
};
}