mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-04 16:22:29 +01:00
Simon Bruder
3ac96a0fb0
This is done to mirror what is done in nixpkgs (https://github.com/NixOS/nixpkgs/pull/170414).
29 lines
734 B
Nix
29 lines
734 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, vapoursynth }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fmtconv";
|
|
version = "29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EleonoreMizo";
|
|
repo = pname;
|
|
rev = "r${version}";
|
|
sha256 = "sha256-V2iY8mBIFtkLkiHXlN/KrlBmzCEpGStHYaOcJSTU9LE=";
|
|
};
|
|
|
|
preAutoreconf = "cd build/unix";
|
|
|
|
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ vapoursynth ];
|
|
|
|
meta = with lib; {
|
|
description = "Format conversion tools for VapourSynth";
|
|
homepage = "https://github.com/EleonoreMizo/fmtconv";
|
|
license = licenses.wtfpl;
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|