libagar: init at 1.5

This commit is contained in:
Ram Kromberg
2016-09-22 02:47:14 +03:00
parent 4677ad04c9
commit afa4138a60
4 changed files with 82 additions and 0 deletions
@@ -0,0 +1,27 @@
{ stdenv, fetchurl, bsdbuild, libagar, perl, libjpeg, libpng, openssl }:
let srcs = import ./srcs.nix { inherit fetchurl; }; in
stdenv.mkDerivation rec {
name = "libagar-test-${version}";
inherit (srcs) version src;
sourceRoot = "agar-1.5.0/tests";
preConfigure = ''
substituteInPlace configure.in \
--replace '_BSD_SOURCE' '_DEFAULT_SOURCE'
cat configure.in | ${bsdbuild}/bin/mkconfigure > configure
'';
configureFlags = "--with-agar=${libagar}";
buildInputs = [ perl bsdbuild libagar libjpeg libpng openssl ];
meta = with stdenv.lib; {
description = "Tests for libagar";
homepage = http://libagar.org/index.html;
license = with licenses; bsd3;
maintainers = with maintainers; [ ramkromberg ];
platforms = with platforms; linux;
};
}