about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libnatspec/default.nix
blob: 4124422c85bdc0a06f17e86d327db9970d2bebb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchurl, autoreconfHook, popt, libiconv }:

stdenv.mkDerivation rec {
  pname = "libnatspec";
  version = "0.3.0";

  src = fetchurl {
    url = "mirror://sourceforge/natspec/${pname}-${version}.tar.bz2";
    sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7";
  };

  nativeBuildInputs = [ autoreconfHook ];

  buildInputs = [ popt ];

  propagatedBuildInputs = [ libiconv ];

  meta = with lib; {
    homepage = "https://natspec.sourceforge.net/";
    description = "A library intended to smooth national specificities in using of programs";
    mainProgram = "natspec";
    platforms = platforms.unix;
    license = licenses.lgpl21;
  };
}