libviperfx: init at unstable-2018-01-15
This commit is contained in:
parent
b3e4c23196
commit
021000482b
2 changed files with 32 additions and 0 deletions
30
pkgs/development/libraries/libviperfx/default.nix
Normal file
30
pkgs/development/libraries/libviperfx/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libviperfx";
|
||||
version = "unstable-2018-01-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vipersaudio";
|
||||
repo = "viperfx_core_binary";
|
||||
rev = "6f7d0da725affe854f083baf5d90c70e172e4488";
|
||||
sha256 = "sha256-hfX46Kk91eQgiO3uhew91I6eEHxazhdGwSkhfNZ+HvQ=";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -D libviperfx_x64_linux.so $out/lib/libviperfx.so
|
||||
install -D README.md $out/share/licenses/libviperfx/LICENSE
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/vipersaudio/viperfx_core_binary";
|
||||
description = "The ViPER FX core";
|
||||
license = licenses.unfreeRedistributable;
|
||||
maintainers = with maintainers; [ rewine ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -19266,6 +19266,8 @@ with pkgs;
|
|||
|
||||
libviper = callPackage ../development/libraries/libviper { };
|
||||
|
||||
libviperfx = callPackage ../development/libraries/libviperfx { };
|
||||
|
||||
libvpx = callPackage ../development/libraries/libvpx { };
|
||||
libvpx_1_8 = callPackage ../development/libraries/libvpx/1_8.nix { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue