2016-04-13 00:15:48 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, popt, libiconv }:
|
2012-02-01 22:32:12 +00:00
|
|
|
|
2013-01-18 22:01:56 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
2016-04-13 00:15:48 +01:00
|
|
|
name = "libnatspec-0.3.0";
|
2012-02-01 22:32:12 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/natspec/${name}.tar.bz2";
|
2016-04-13 00:15:48 +01:00
|
|
|
sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7";
|
2012-02-01 22:32:12 +00:00
|
|
|
};
|
|
|
|
|
2016-04-13 00:15:48 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2013-01-18 22:01:56 +00:00
|
|
|
buildInputs = [ popt ];
|
2012-02-01 22:32:12 +00:00
|
|
|
|
2018-10-18 20:11:49 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://natspec.sourceforge.net/";
|
2012-02-01 22:32:12 +00:00
|
|
|
description = "A library intended to smooth national specificities in using of programs";
|
2018-10-18 20:11:49 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.lgpl21;
|
2012-02-01 22:32:12 +00:00
|
|
|
};
|
2013-01-18 22:01:56 +00:00
|
|
|
} // stdenv.lib.optionalAttrs (!stdenv.isLinux) {
|
2015-06-22 22:11:40 +01:00
|
|
|
propagatedBuildInputs = [ libiconv ];
|
2013-01-18 22:01:56 +00:00
|
|
|
})
|