packages/tubefeeder: 1.9.6 -> 1.14.5
This commit is contained in:
parent
402b398d37
commit
96de1cddab
2 changed files with 2670 additions and 16 deletions
2658
packages/apps/tubefeeder/Cargo.lock
generated
Normal file
2658
packages/apps/tubefeeder/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
{ stdenv
|
||||
, desktop-file-utils
|
||||
, fetchFromGitHub
|
||||
, fetchFromGitLab
|
||||
, gettext
|
||||
, glib
|
||||
, gtk4
|
||||
|
@ -17,20 +17,21 @@
|
|||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tubefeeder";
|
||||
version = "1.9.6";
|
||||
pname = "pipeline";
|
||||
version = "1.14.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Tubefeeder";
|
||||
repo = "Tubefeeder";
|
||||
src = fetchFromGitLab {
|
||||
owner = "schmiddi-on-mobile";
|
||||
repo = "pipeline";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-QB+LGSHwbJWGRx+jsS23B8r6Z43pdh1ECKv2HAb6z8Y=";
|
||||
sha256 = "sha256-C5mFOYYrm8e2zlac7qclhpONKuqdvqfwT74gSX28VPs=";
|
||||
};
|
||||
|
||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||
inherit src;
|
||||
name = "${pname}-${version}";
|
||||
hash = "sha256-lSaT7k64MKl6WydLDxgxz4Q4QiX0wxHe6vmJ/c4f/Y0=";
|
||||
cargoDeps = rustPlatform.importCargoLock {
|
||||
lockFile = ./Cargo.lock;
|
||||
outputHashes = {
|
||||
"tf_core-0.1.4" = "sha256-yOuvHLyX/qUJSs62VbripKwIEoErsPu9rzbKMdndvmc=";
|
||||
};
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -56,9 +57,4 @@ stdenv.mkDerivation rec {
|
|||
postPatch = ''
|
||||
patchShebangs build-aux/meson_post_install.py
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
substituteInPlace $out/share/applications/de.schmidhuberj.tubefeeder.desktop \
|
||||
--replace /app/bin/tubefeeder tubefeeder
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue