mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 23:52:33 +00:00
7d639b1748
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/7jhldrzqcz3ymbm30j635m9sf6q7b3ac-gnustep-back-0.26.2/bin/gpbs --help` got 0 exit code - ran `/nix/store/7jhldrzqcz3ymbm30j635m9sf6q7b3ac-gnustep-back-0.26.2/bin/gpbs help` got 0 exit code - ran `/nix/store/7jhldrzqcz3ymbm30j635m9sf6q7b3ac-gnustep-back-0.26.2/bin/.gpbs-wrapped --help` got 0 exit code - ran `/nix/store/7jhldrzqcz3ymbm30j635m9sf6q7b3ac-gnustep-back-0.26.2/bin/.gpbs-wrapped help` got 0 exit code - found 0.26.2 with grep in /nix/store/7jhldrzqcz3ymbm30j635m9sf6q7b3ac-gnustep-back-0.26.2 - directory tree listing: https://gist.github.com/54fd76edf6d8b2835f52c660d901708a
25 lines
513 B
Nix
25 lines
513 B
Nix
{ gsmakeDerivation
|
|
, cairo
|
|
, fetchurl
|
|
, base, gui
|
|
, x11
|
|
, freetype
|
|
, pkgconfig
|
|
, libXmu
|
|
}:
|
|
let
|
|
version = "0.26.2";
|
|
in
|
|
gsmakeDerivation {
|
|
name = "gnustep-back-${version}";
|
|
src = fetchurl {
|
|
url = "ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${version}.tar.gz";
|
|
sha256 = "012gsc7x66gmsw6r5w65a64krcigf7rzqzd5x86d4gv94344knlf";
|
|
};
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ cairo base gui freetype x11 libXmu ];
|
|
meta = {
|
|
description = "A generic backend for GNUstep";
|
|
};
|
|
}
|