2014-06-27 13:08:18 +01:00
|
|
|
{stdenv, fetchurl, boost, pkgconfig, cppunit, zlib, libwpg, libwpd, librevenge}:
|
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="libmwaw";
|
2019-05-01 08:06:57 +01:00
|
|
|
version="0.3.15";
|
2014-06-27 13:08:18 +01:00
|
|
|
name="${baseName}-${version}";
|
2019-05-01 08:06:57 +01:00
|
|
|
hash="1cdhm9yhanyv3w4vr73zhgyynmkhhkp3dyld7m11jd2yy04vnh04";
|
|
|
|
url="mirror://sourceforge/libmwaw/libmwaw/libmwaw-0.3.15/libmwaw-0.3.15.tar.xz";
|
|
|
|
sha256="1cdhm9yhanyv3w4vr73zhgyynmkhhkp3dyld7m11jd2yy04vnh04";
|
2014-06-27 13:08:18 +01:00
|
|
|
};
|
2017-09-14 20:24:37 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-06-27 13:08:18 +01:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
boost cppunit zlib libwpg libwpd librevenge
|
2014-06-27 13:08:18 +01:00
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
2017-09-14 20:24:37 +01:00
|
|
|
inherit nativeBuildInputs buildInputs;
|
2014-06-27 13:08:18 +01:00
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
inherit (s) version;
|
|
|
|
description = ''Import library for some old mac text documents'';
|
|
|
|
license = stdenv.lib.licenses.mpl20 ;
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
2018-11-15 21:54:47 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-06-27 13:08:18 +01:00
|
|
|
};
|
|
|
|
}
|