nixpkgs-suyu/pkgs/development/libraries/libnatspec/default.nix

24 lines
658 B
Nix
Raw Normal View History

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