Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libtifiles2 / default.nix
blob874cbc87c87574ae5b6fe7682804493fd70be236
1 { stdenv
2 , lib
3 , fetchurl
4 , pkg-config
5 , autoreconfHook
6 , glib
7 , libarchive
8 , libticonv
9 }:
11 stdenv.mkDerivation rec {
12   pname = "libtifiles2";
13   version = "1.1.7";
14   src = fetchurl {
15     url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2";
16     sha256 = "10n9mhlabmaw3ha5ckllxfy6fygs2pmlmj5v6w5v62bvx54kpils";
17   };
19   nativeBuildInputs = [
20     autoreconfHook
21     pkg-config
22   ];
24   buildInputs = [
25     glib
26     libarchive
27     libticonv
28   ];
30   meta = with lib; {
31     changelog = "http://lpg.ticalc.org/prj_tilp/news.html";
32     description = "This library is part of the TiLP framework";
33     homepage = "http://lpg.ticalc.org/prj_tilp/";
34     license = licenses.gpl2Plus;
35     maintainers = with maintainers; [ siraben luc65r ];
36     platforms = with platforms; linux ++ darwin;
37   };