linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libmwaw / default.nix
blob17e20e3d3997c01be073a773fbd338025a41148c
1 {lib, stdenv, fetchurl, boost, pkg-config, cppunit, zlib, libwpg, libwpd, librevenge}:
2 let
3   s = # Generated upstream information
4   rec {
5     baseName="libmwaw";
6     version="0.3.17";
7     name="${baseName}-${version}";
8     hash="074ipcq9w7jbd5x316dzclddgia2ydw098ph9d7p3d713pmkf5cf";
9     url="mirror://sourceforge/libmwaw/libmwaw/libmwaw-0.3.17/libmwaw-0.3.17.tar.xz";
10     sha256="074ipcq9w7jbd5x316dzclddgia2ydw098ph9d7p3d713pmkf5cf";
11   };
13   nativeBuildInputs = [ pkg-config ];
14   buildInputs = [
15     boost cppunit zlib libwpg libwpd librevenge
16   ];
18 stdenv.mkDerivation {
19   inherit (s) name version;
20   inherit nativeBuildInputs buildInputs;
21   src = fetchurl {
22     inherit (s) url sha256;
23   };
24   meta = {
25     inherit (s) version;
26     description = "Import library for some old mac text documents";
27     license = lib.licenses.mpl20 ;
28     maintainers = [lib.maintainers.raskin];
29     platforms = lib.platforms.unix;
30   };