2021-01-21 17:00:13 +00:00
|
|
|
{ lib, 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 {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "mirror://gnu/libxmi/libxmi-1.2.tar.gz";
|
2009-04-05 22:41:38 +01:00
|
|
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/libxmi/";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2021-01-23 17:15:07 +00:00
|
|
|
platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2009-04-05 22:41:38 +01:00
|
|
|
};
|
|
|
|
}
|