3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libagar/libagar_test.nix

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

35 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, bsdbuild, libagar, perl, libjpeg, libpng, openssl }:
2016-08-25 06:45:10 +01:00
let srcs = import ./srcs.nix { inherit fetchurl; }; in
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "libagar-test";
2016-08-25 06:45:10 +01:00
inherit (srcs) version src;
sourceRoot = "agar-1.5.0/tests";
# Workaround build failure on -fno-common toolchains:
# ld: textdlg.o:(.bss+0x0): multiple definition of `someString';
# configsettings.o:(.bss+0x0): first defined here
# TODO: the workaround can be removed once nixpkgs updates to 1.6.0.
NIX_CFLAGS_COMPILE = "-fcommon";
2016-08-25 06:45:10 +01:00
preConfigure = ''
substituteInPlace configure.in \
--replace '_BSD_SOURCE' '_DEFAULT_SOURCE'
cat configure.in | ${bsdbuild}/bin/mkconfigure > configure
'';
2018-07-25 22:44:21 +01:00
configureFlags = [ "--with-agar=${libagar}" ];
2016-08-25 06:45:10 +01:00
buildInputs = [ perl bsdbuild libagar libjpeg libpng openssl ];
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
2016-08-25 06:45:10 +01:00
description = "Tests for libagar";
homepage = "http://libagar.org/index.html";
2016-08-25 06:45:10 +01:00
license = with licenses; bsd3;
maintainers = with maintainers; [ ramkromberg ];
platforms = with platforms; linux;
};
}