npapi-sdk: New package
NPAPI-SDK is a bundle of NPAPI headers by Mozilla.
This commit is contained in:
parent
be8667627a
commit
2d821edb92
22
pkgs/development/libraries/npapi-sdk/default.nix
Normal file
22
pkgs/development/libraries/npapi-sdk/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -1525,6 +1525,8 @@ let
|
|||||||
|
|
||||||
nlopt = callPackage ../development/libraries/nlopt {};
|
nlopt = callPackage ../development/libraries/nlopt {};
|
||||||
|
|
||||||
|
npapi_sdk = callPackage ../development/libraries/npapi-sdk {};
|
||||||
|
|
||||||
npth = callPackage ../development/libraries/npth {};
|
npth = callPackage ../development/libraries/npth {};
|
||||||
|
|
||||||
nmap = callPackage ../tools/security/nmap {
|
nmap = callPackage ../tools/security/nmap {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user