about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/gnustep/gui/default.nix
blob: e8c3ea27fa4d3b5f55c05eea047aeb24fed8b63c (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.29.0";
  pname = "gnustep-gui";

  src = fetchzip {
    url = "ftp://ftp.gnustep.org/pub/gnustep/core/${pname}-${version}.tar.gz";
    sha256 = "0x6n48p178r4zd8f4sqjfqd6rp49w00wr59w19lpwlmrdv7bn538";
  };
  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}";
  };
}