10 stdenv.mkDerivation rec {
15 url = "mirror://sourceforge/natspec/${pname}-${version}.tar.bz2";
16 sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7";
19 nativeBuildInputs = [ autoreconfHook ];
21 buildInputs = [ popt ];
23 env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
24 NIX_LDFLAGS = "-liconv";
27 propagatedBuildInputs = [ libiconv ];
30 homepage = "https://natspec.sourceforge.net/";
31 description = "Library intended to smooth national specificities in using of programs";
32 mainProgram = "natspec";
33 platforms = platforms.unix;
34 license = licenses.lgpl21;