mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
666 B
Nix
29 lines
666 B
Nix
{ stdenv, fetchurl, texinfo, allegro, perl, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cgui";
|
|
version="2.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/cgui/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1pp1hvidpilq37skkmbgba4lvzi01rasy04y0cnas9ck0canv00s";
|
|
};
|
|
|
|
buildInputs = [ texinfo allegro perl libX11 ];
|
|
|
|
configurePhase = ''
|
|
sh fix.sh unix
|
|
'';
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
makeFlags = [ "SYSTEM_DIR=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A multiplatform basic GUI library";
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.free;
|
|
};
|
|
}
|