nixpkgs/pkgs/by-name/nw/nwjs-ffmpeg-prebuilt/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.1 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchurl,
unzip,
}:
let
bits = if stdenv.hostPlatform.is64bit then "x64" else "ia32";
2024-08-22 15:40:56 -04:00
version = "0.91.0";
in
stdenv.mkDerivation {
pname = "nwjs-ffmpeg-prebuilt";
inherit version;
src =
let
hashes = {
2024-08-22 15:40:56 -04:00
"x64" = "sha256-C6ZOY+oFyWYqLvpYmM9KnQ3B7y0JAXp4SbeNBYvcUe0=";
"ia32" = "sha256-C6ZOY+oFyWYqLvpYmM9KnQ3B7y0JAXp4SbeNBYvcUe0=";
};
in
fetchurl {
url = "https://github.com/nwjs-ffmpeg-prebuilt/nwjs-ffmpeg-prebuilt/releases/download/${version}/${version}-linux-${bits}.zip";
hash = hashes.${bits};
};
sourceRoot = ".";
nativeBuildInputs = [ unzip ];
installPhase = ''
runHook preInstall
mkdir -p $out/lib
cp -R libffmpeg.so $out/lib/
runHook postInstall
'';
meta = {
description = "An app runtime based on Chromium and node.js";
homepage = "https://nwjs.io/";
platforms = [
"i686-linux"
"x86_64-linux"
];
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
maintainers = with lib.maintainers; [
ilya-epifanov
mikaelfangel
];
license = lib.licenses.gpl2Plus;
};
}