mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
avxsynth: drop
It was marked as broken in April 2018
This commit is contained in:
parent
1e85864c6f
commit
92d58ebc31
3 changed files with 1 additions and 47 deletions
|
@ -1,43 +0,0 @@
|
|||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
||||
, cairo, ffmpeg_3, ffms, libjpeg, log4cpp, pango
|
||||
, avxeditSupport ? false, qt4 ? null
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (lib) enableFeature optional;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "avxsynth";
|
||||
version = "2015-04-07";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "avxsynth";
|
||||
repo = "avxsynth";
|
||||
rev = "80dcb7ec8d314bc158130c92803308aa8e5e9242";
|
||||
sha256 = "0kckggvgv68b0qjdi7ms8vi97b46dl63n60qr96d2w67lf2nk87z";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
"--enable-autocrop"
|
||||
"--enable-framecapture"
|
||||
"--enable-subtitle"
|
||||
"--enable-ffms2"
|
||||
(enableFeature avxeditSupport "avxedit")
|
||||
"--with-jpeg=${libjpeg.out}/lib"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
|
||||
buildInputs = [ cairo ffmpeg_3 ffms libjpeg log4cpp pango ]
|
||||
++ optional avxeditSupport qt4;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A script system that allows advanced non-linear editing";
|
||||
homepage = "https://github.com/avxsynth/avxsynth";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ codyopel ];
|
||||
platforms = platforms.linux;
|
||||
broken = true; # 2018-04-10
|
||||
};
|
||||
}
|
|
@ -63,6 +63,7 @@ mapAliases ({
|
|||
at_spi2_core = at-spi2-core; # added 2018-02-25
|
||||
aucdtect = throw "aucdtect: Upstream no longer provides download urls."; # added 2020-12-26
|
||||
avldrums-lv2 = x42-avldrums; # added 2020-03-29
|
||||
avxsynth = throw "avxsynth was removed because it was broken"; # added 2021-05-18
|
||||
bar-xft = lemonbar-xft; # added 2015-01-16
|
||||
bashCompletion = bash-completion; # Added 2016-09-28
|
||||
batti = throw "batti has been removed from nixpkgs, as it was unmaintained"; # added 2019-12-10
|
||||
|
|
|
@ -22353,10 +22353,6 @@ in
|
|||
|
||||
avrdudess = callPackage ../applications/misc/avrdudess { };
|
||||
|
||||
avxsynth = callPackage ../applications/video/avxsynth {
|
||||
libjpeg = libjpeg_original; # error: 'JCOPYRIGHT_SHORT' was not declared in this scope
|
||||
};
|
||||
|
||||
awesome-4-0 = callPackage ../applications/window-managers/awesome {
|
||||
cairo = cairo.override { xcbSupport = true; };
|
||||
inherit (texFunctions) fontsConf;
|
||||
|
|
Loading…
Reference in a new issue