mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
20 lines
542 B
Nix
20 lines
542 B
Nix
{ 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}";
|
|
};
|
|
}
|