mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
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 {};
|
||||
|
||||
npapi_sdk = callPackage ../development/libraries/npapi-sdk {};
|
||||
|
||||
npth = callPackage ../development/libraries/npth {};
|
||||
|
||||
nmap = callPackage ../tools/security/nmap {
|
||||
|
|
Loading…
Reference in a new issue