npapi-sdk: New package

NPAPI-SDK is a bundle of NPAPI headers by Mozilla.
This commit is contained in:
Ricardo M. Correia 2014-03-25 17:29:03 +01:00
parent be8667627a
commit 2d821edb92
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "npapi-sdk-${version}";
version = "0.27.2";
src = fetchurl {
url = "https://bitbucket.org/mgorny/npapi-sdk/downloads/${name}.tar.bz2";
sha256 = "0xxfcsjmmgbbyl9zwpzdshbx27grj5fnzjfmldmm9apws2yk9gq1";
};
meta = with stdenv.lib; {
description = "NPAPI-SDK is a bundle of NPAPI headers by Mozilla";
homepage = https://code.google.com/p/npapi-sdk/;
license = licenses.bsd3;
maintainers = with maintainers; [ wizeman ];
platforms = platforms.linux;
};
}

View File

@ -1525,6 +1525,8 @@ let
nlopt = callPackage ../development/libraries/nlopt {};
npapi_sdk = callPackage ../development/libraries/npapi-sdk {};
npth = callPackage ../development/libraries/npth {};
nmap = callPackage ../tools/security/nmap {