nixpkgs/pkgs/games/macopix/default.nix

30 lines
709 B
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, fetchurl, pkgconfig, gtk, openssl }:
2015-09-29 02:49:07 +00:00
stdenv.mkDerivation rec {
name = "macopix-1.7.4";
src = fetchurl {
url = "http://rosegray.sakura.ne.jp/macopix/${name}.tar.bz2";
sha256 = "0sgnr0wrw3hglcnsyvipll7icfv69ssmyw584zfhk1rgramlkzyb";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk openssl ];
2015-09-29 02:49:07 +00:00
preConfigure = ''
# Build fails on Linux with windres.
export ac_cv_prog_WINDRES=
'';
enableParallelBuilding = true;
2019-10-30 11:34:47 +00:00
NIX_LDFLAGS = "-lX11";
2015-09-29 02:49:07 +00:00
meta = {
description = "Mascot Constructive Pilot for X";
homepage = "http://rosegray.sakura.ne.jp/macopix/index-e.html";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
2015-09-29 02:49:07 +00:00
};
}