summary refs log tree commit diff
path: root/pkgs/development/libraries/libnatspec/default.nix
blob: fbab569e38cc7780b48fe61959c2d7968ccb4faf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, popt }:

stdenv.mkDerivation rec {
  name = "libnatspec-0.2.6";

  src = fetchurl {
    url = "mirror://sourceforge/natspec/${name}.tar.bz2";
    sha256 = "0zvm9afh1skxgdv62ylrpwyykpjhhskxj0zv7yrdf7jhfdriz0y3";
  };

  buildInputs = [ popt ];

  meta = {
    homepage = http://natspec.sourceforge.net/ ;
    description = "A library intended to smooth national specificities in using of programs";
    platforms = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.urkud ];
  };
}