nixpkgs/pkgs/development/libraries/npapi-sdk/default.nix
Joachim Fasting bf7ad2d84f meta.description fixups
Mostly scripted substitutions with a couple of subjective enhancements.
2015-04-30 18:17:42 +02:00

22 lines
488 B
Nix

{ 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 = "A bundle of NPAPI headers by Mozilla";
homepage = https://code.google.com/p/npapi-sdk/;
license = licenses.bsd3;
platforms = platforms.linux;
};
}