forked from mirrors/nixpkgs
Add libnatspec
svn path=/nixpkgs/trunk/; revision=31960
This commit is contained in:
parent
cc145f2ae9
commit
89de1150d5
19
pkgs/development/libraries/libnatspec/default.nix
Normal file
19
pkgs/development/libraries/libnatspec/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -4039,6 +4039,8 @@ let
|
|||
|
||||
libmtp = callPackage ../development/libraries/libmtp { };
|
||||
|
||||
libnatspec = callPackage ../development/libraries/libnatspec { };
|
||||
|
||||
libnice = callPackage ../development/libraries/libnice {
|
||||
inherit (gnome) glib;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue