1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

vapoursynth-editor: R19 -> R19-mod-4

This switches to a fork that has support for the VapourSynth v4 API
(R55 and above). The original vsedit does not work with those versions.
This commit is contained in:
Simon Bruder 2021-10-15 20:48:49 +02:00
parent 5f3551afd9
commit 698a14b975
No known key found for this signature in database
GPG key ID: 8D3C82F9F309F8EC

View file

@ -1,4 +1,4 @@
{ lib, mkDerivation, fetchFromBitbucket, makeWrapper, runCommand { lib, mkDerivation, fetchFromGitHub, makeWrapper, runCommand
, python3, vapoursynth , python3, vapoursynth
, qmake, qtbase, qtwebsockets , qmake, qtbase, qtwebsockets
}: }:
@ -6,13 +6,13 @@
let let
unwrapped = mkDerivation rec { unwrapped = mkDerivation rec {
pname = "vapoursynth-editor"; pname = "vapoursynth-editor";
version = "R19"; version = "R19-mod-4";
src = fetchFromBitbucket { src = fetchFromGitHub {
owner = "mystery_keeper"; owner = "YomikoR";
repo = pname; repo = pname;
rev = lib.toLower version; rev = lib.toLower version;
sha256 = "1zlaynkkvizf128ln50yvzz3b764f5a0yryp6993s9fkwa7djb6n"; sha256 = "sha256-+/9j9DJDGXbuTvE8ZXIu6wjcof39SyatS36Q6y9hLPg=";
}; };
nativeBuildInputs = [ qmake ]; nativeBuildInputs = [ qmake ];
@ -35,7 +35,7 @@ let
meta = with lib; { meta = with lib; {
description = "Cross-platform editor for VapourSynth scripts"; description = "Cross-platform editor for VapourSynth scripts";
homepage = "https://bitbucket.org/mystery_keeper/vapoursynth-editor"; homepage = "https://github.com/YomikoR/VapourSynth-Editor";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ tadeokondrak ]; maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.all; platforms = platforms.all;