summary refs log tree commit diff
path: root/pkgs/desktops/gnustep/gui/default.nix
blob: 399bad2581f6890dc2edbd0e7d348e60ffe87cd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ gsmakeDerivation, fetchurl, base }:
let
  version = "0.26.2";
in
gsmakeDerivation {
  name = "gnustep-gui-${version}";
  src = fetchurl {
    url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-gui-${version}.tar.gz";
    sha256 = "1dsbkifnjha3ghq8xx55bpsbbng0cjsni3yz71r7342ax2ixcvxc";
  };
  buildInputs = [ base ];
  patches = [ ./fixup-all.patch ];
  meta = {
    description = "A GUI class library of GNUstep";
  };
}