2011-01-19 22:56:25 +00:00
|
|
|
{ stdenv, fetchurl, libtool }:
|
2009-04-05 22:41:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libxmi-1.2";
|
2011-01-19 22:56:25 +00:00
|
|
|
|
2009-04-05 22:41:38 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://gnu/libxmi/libxmi-1.2.tar.gz;
|
|
|
|
sha256 = "03d4ikh29l38rl1wavb0icw7m5pp7yilnv7bb2k8qij1dinsymlx";
|
|
|
|
};
|
2009-04-06 18:11:15 +01:00
|
|
|
|
2011-01-19 22:56:25 +00:00
|
|
|
# For the x86_64 GNU/Linux arch to be recognized by 'configure'
|
2015-03-06 09:27:31 +00:00
|
|
|
preConfigure = "cp ${libtool}/share/libtool/build-aux/config.sub .";
|
2011-01-19 22:56:25 +00:00
|
|
|
|
2009-04-05 22:41:38 +01:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Library for rasterizing 2-D vector graphics";
|
2009-04-05 22:41:38 +01:00
|
|
|
homepage = http://www.gnu.org/software/libxmi/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-01-19 22:56:25 +00:00
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2009-04-05 22:41:38 +01:00
|
|
|
};
|
|
|
|
}
|