nixpkgs/pkgs/desktops/gnustep/gui/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
541 B
Nix
Raw Normal View History

{ gsmakeDerivation, fetchzip, base }:
gsmakeDerivation rec {
2023-11-22 18:59:13 +00:00
version = "0.30.0";
pname = "gnustep-gui";
src = fetchzip {
url = "ftp://ftp.gnustep.org/pub/gnustep/core/${pname}-${version}.tar.gz";
2023-11-22 18:59:13 +00:00
sha256 = "sha256-24hL4TeIY6izlhQUcxKI0nXITysAPfRrncRqsDm2zNk=";
};
buildInputs = [ base ];
2021-03-01 13:28:20 +00:00
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}";
};
}