mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
auto-editor: remove package
I use more of Audacity for similar purposes.
This commit is contained in:
parent
84fb02fb28
commit
7181a17766
@ -1,29 +0,0 @@
|
||||
{ stdenv, lib, ffmpeg, fetchFromGitHub, python310Packages }:
|
||||
|
||||
python310Packages.buildPythonApplication rec {
|
||||
pname = "auto-editor";
|
||||
version = "22w39a";
|
||||
doCheck = false;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "WyattBlue";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-qtdk1Rr0EhG8LqY5cBxsH6VKXT/f9SV6a1X2R3HZOzI=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed ./setup.py -i -E \
|
||||
-e "/ae-ffmpeg/d"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with python310Packages; [ numpy yt-dlp av pillow ];
|
||||
runtimeDependencies = [ ffmpeg ];
|
||||
|
||||
meta = with lib; {
|
||||
description =
|
||||
"Command-line application for automating video and audio editing with a variety of methods";
|
||||
homepage = "https://auto-editor.com";
|
||||
license = licenses.unlicense;
|
||||
};
|
||||
}
|
@ -6,7 +6,6 @@ let
|
||||
packages = self:
|
||||
let callPackage = newScope self;
|
||||
in rec {
|
||||
auto-editor = callPackage ./auto-editor.nix { };
|
||||
awesome-cli = callPackage ./awesome-cli { };
|
||||
decker = callPackage ./decker { };
|
||||
cosmic-launcher = callPackage ./cosmic-launcher { };
|
||||
|
Loading…
Reference in New Issue
Block a user