20 lines
520 B
Nix
20 lines
520 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|