nixpkgs/pkgs/games/macopix/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
947 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, gtk, openssl }:
2015-09-29 03:49:07 +01:00
stdenv.mkDerivation rec {
2021-06-22 22:44:58 +01:00
pname = "macopix";
version = "1.7.4";
2015-09-29 03:49:07 +01:00
src = fetchurl {
2021-06-22 22:44:58 +01:00
url = "http://rosegray.sakura.ne.jp/macopix/macopix-${version}.tar.bz2";
2015-09-29 03:49:07 +01:00
sha256 = "0sgnr0wrw3hglcnsyvipll7icfv69ssmyw584zfhk1rgramlkzyb";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk openssl ];
2015-09-29 03:49:07 +01:00
preConfigure = ''
# Build fails on Linux with windres.
export ac_cv_prog_WINDRES=
'';
enableParallelBuilding = true;
# Workaround build failure on -fno-common toolchains:
# ld: dnd.o:src/main.h:136: multiple definition of
# `MENU_EXT'; main.o:src/main.h:136: first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
2019-10-30 11:34:47 +00:00
NIX_LDFLAGS = "-lX11";
2015-09-29 03:49:07 +01: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 03:49:07 +01:00
};
}