nixpkgs/pkgs/development/libraries/frei0r/default.nix
Daniel Schaefer bac4d95aa2 treewide: Change URLs to HTTPS
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them
if there's actual content. Inspired by
https://github.com/NixOS/nixpkgs/issues/60004
2019-04-22 10:19:54 +02:00

24 lines
639 B
Nix

{ stdenv, fetchurl, autoconf, cairo, opencv, pkgconfig }:
stdenv.mkDerivation rec {
name = "frei0r-plugins-${version}";
version = "1.6.1";
src = fetchurl {
url = "https://files.dyne.org/frei0r/releases/${name}.tar.gz";
sha256 = "0pji26fpd0dqrx1akyhqi6729s394irl73dacnyxk58ijqq4dhp0";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf cairo opencv ];
meta = with stdenv.lib; {
homepage = https://frei0r.dyne.org;
description = "Minimalist, cross-platform, shared video plugins";
license = licenses.gpl2;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}