1{ lib, stdenv, fetchurl, autoreconfHook, popt, libiconv }:
2
3stdenv.mkDerivation rec {
4 pname = "libnatspec";
5 version = "0.3.0";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/natspec/${pname}-${version}.tar.bz2";
9 sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7";
10 };
11
12 nativeBuildInputs = [ autoreconfHook ];
13
14 buildInputs = [ popt ];
15
16 propagatedBuildInputs = [ libiconv ];
17
18 meta = with lib; {
19 homepage = "https://natspec.sourceforge.net/";
20 description = "A library intended to smooth national specificities in using of programs";
21 platforms = platforms.unix;
22 license = licenses.lgpl21;
23 };
24}