depot/third_party/nixpkgs/pkgs/games/macopix/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

29 lines
711 B
Nix

{ lib, stdenv, fetchurl, pkg-config, gtk, openssl }:
stdenv.mkDerivation rec {
name = "macopix-1.7.4";
src = fetchurl {
url = "http://rosegray.sakura.ne.jp/macopix/${name}.tar.bz2";
sha256 = "0sgnr0wrw3hglcnsyvipll7icfv69ssmyw584zfhk1rgramlkzyb";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk openssl ];
preConfigure = ''
# Build fails on Linux with windres.
export ac_cv_prog_WINDRES=
'';
enableParallelBuilding = true;
NIX_LDFLAGS = "-lX11";
meta = {
description = "Mascot Constructive Pilot for X";
homepage = "http://rosegray.sakura.ne.jp/macopix/index-e.html";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
};
}