packages/tubefeeder: 1.9.6 -> 1.14.5

This commit is contained in:
Max Headroom 2024-04-25 21:51:40 +02:00
parent 402b398d37
commit 96de1cddab
2 changed files with 2670 additions and 16 deletions

2658
packages/apps/tubefeeder/Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ stdenv { stdenv
, desktop-file-utils , desktop-file-utils
, fetchFromGitHub , fetchFromGitLab
, gettext , gettext
, glib , glib
, gtk4 , gtk4
@ -17,20 +17,21 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tubefeeder"; pname = "pipeline";
version = "1.9.6"; version = "1.14.5";
src = fetchFromGitHub { src = fetchFromGitLab {
owner = "Tubefeeder"; owner = "schmiddi-on-mobile";
repo = "Tubefeeder"; repo = "pipeline";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-QB+LGSHwbJWGRx+jsS23B8r6Z43pdh1ECKv2HAb6z8Y="; sha256 = "sha256-C5mFOYYrm8e2zlac7qclhpONKuqdvqfwT74gSX28VPs=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.importCargoLock {
inherit src; lockFile = ./Cargo.lock;
name = "${pname}-${version}"; outputHashes = {
hash = "sha256-lSaT7k64MKl6WydLDxgxz4Q4QiX0wxHe6vmJ/c4f/Y0="; "tf_core-0.1.4" = "sha256-yOuvHLyX/qUJSs62VbripKwIEoErsPu9rzbKMdndvmc=";
};
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -56,9 +57,4 @@ stdenv.mkDerivation rec {
postPatch = '' postPatch = ''
patchShebangs build-aux/meson_post_install.py patchShebangs build-aux/meson_post_install.py
''; '';
postFixup = ''
substituteInPlace $out/share/applications/de.schmidhuberj.tubefeeder.desktop \
--replace /app/bin/tubefeeder tubefeeder
'';
} }