about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/gnustep/gui/default.nix
blob: 962d6eef7fded2a51c39f73df3810f5b53dc6a93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ gsmakeDerivation, fetchzip, base }:

gsmakeDerivation rec {
  version = "0.30.0";
  pname = "gnustep-gui";

  src = fetchzip {
    url = "ftp://ftp.gnustep.org/pub/gnustep/core/${pname}-${version}.tar.gz";
    sha256 = "sha256-24hL4TeIY6izlhQUcxKI0nXITysAPfRrncRqsDm2zNk=";
  };
  buildInputs = [ base ];
  patches = [
    ./fixup-all.patch
  ];
  meta = {
    description = "A GUI class library of GNUstep";
    changelog = "https://github.com/gnustep/libs-gui/releases/tag/gui-${builtins.replaceStrings [ "." ] [ "_" ] version}";
  };
}