mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
29 lines
726 B
Nix
29 lines
726 B
Nix
{ stdenv, fetchurl, SDL, eigen, epoxy, fftw, gtest, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "movit-${version}";
|
|
version = "1.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://movit.sesse.net/${name}.tar.gz";
|
|
sha256 = "1259iq2ixiprk4mn7ypapinbg2w1sjq1aivzzbbch9i23kcfsd44";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
GTEST_DIR = "${gtest}";
|
|
|
|
propagatedBuildInputs = [ eigen epoxy ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ SDL fftw gtest ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "High-performance, high-quality video filters for the GPU";
|
|
homepage = http://movit.sesse.net;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|