mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
Add frei0r: Minimalist, cross-platform, shared video plugins
This commit is contained in:
parent
ae16e892bb
commit
0fec3f82fc
22
pkgs/development/libraries/frei0r/default.nix
Normal file
22
pkgs/development/libraries/frei0r/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchurl, autoconf, cairo, opencv, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "frei0r-plugins-${version}";
|
||||
version = "1.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://files.dyne.org/.xsend.php?file=frei0r/releases/${name}.tar.gz";
|
||||
sha256 = "0mxyhdp1p1a3ga8170ijygb870zwbww1dgp3kdr1nd4zvsmzqw44";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf cairo opencv pkgconfig ];
|
||||
|
||||
meta = {
|
||||
homepage = http://frei0r.dyne.org;
|
||||
description = "Minimalist, cross-platform, shared video plugins";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
};
|
||||
}
|
|
@ -4517,6 +4517,8 @@ let
|
|||
|
||||
freetype = callPackage ../development/libraries/freetype { };
|
||||
|
||||
frei0r = callPackage ../development/libraries/frei0r { };
|
||||
|
||||
fribidi = callPackage ../development/libraries/fribidi { };
|
||||
|
||||
funambol = callPackage ../development/libraries/funambol { };
|
||||
|
|
Loading…
Reference in a new issue