mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
Merge pull request #119704 from prusnak/runwayml-drop
runwayml: drop in favor of runwayml webapp
This commit is contained in:
commit
7e4e751746
@ -1,45 +0,0 @@
|
|||||||
{ lib
|
|
||||||
, fetchurl
|
|
||||||
, appimageTools
|
|
||||||
, symlinkJoin
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
pname = "runwayml";
|
|
||||||
version = "0.14.3";
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://runway-releases.s3.amazonaws.com/Runway-${version}.AppImage";
|
|
||||||
sha256 = "1bx8j39wd2z6f32hdvmk9z77bivnizzdhn296kin2nnqgq6v6y93";
|
|
||||||
};
|
|
||||||
|
|
||||||
binary = appimageTools.wrapType2 {
|
|
||||||
name = pname;
|
|
||||||
inherit src;
|
|
||||||
};
|
|
||||||
# we only use this to extract the icon and desktop file
|
|
||||||
appimage-contents = appimageTools.extractType2 {
|
|
||||||
inherit name src;
|
|
||||||
};
|
|
||||||
|
|
||||||
in
|
|
||||||
symlinkJoin {
|
|
||||||
inherit name;
|
|
||||||
paths = [ binary ];
|
|
||||||
|
|
||||||
postBuild = ''
|
|
||||||
mkdir -p $out/share/pixmaps/ $out/share/applications
|
|
||||||
cp ${appimage-contents}/usr/share/icons/hicolor/1024x1024/apps/runway.png $out/share/pixmaps/runway.png
|
|
||||||
substituteInPlace ${appimage-contents}/runway.desktop \
|
|
||||||
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Machine learning for creators";
|
|
||||||
homepage = "https://runwayml.com/";
|
|
||||||
license = licenses.unfree;
|
|
||||||
maintainers = with maintainers; [ prusnak ];
|
|
||||||
platforms = [ "x86_64-linux" ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -639,6 +639,7 @@ mapAliases ({
|
|||||||
rubyPackages_2_5 = throw "rubyPackages_2_5 was deprecated in 2021-02: use a newer version of rubyPackages instead";
|
rubyPackages_2_5 = throw "rubyPackages_2_5 was deprecated in 2021-02: use a newer version of rubyPackages instead";
|
||||||
rubygems = throw "rubygems was deprecated on 2016-03-02: rubygems is now bundled with ruby";
|
rubygems = throw "rubygems was deprecated on 2016-03-02: rubygems is now bundled with ruby";
|
||||||
rubyMinimal = throw "rubyMinimal was removed due to being unused";
|
rubyMinimal = throw "rubyMinimal was removed due to being unused";
|
||||||
|
runwayml = throw "runwayml is now a webapp"; # added 2021-04-17
|
||||||
rxvt_unicode-with-plugins = rxvt-unicode; # added 2020-02-02
|
rxvt_unicode-with-plugins = rxvt-unicode; # added 2020-02-02
|
||||||
rxvt_unicode = rxvt-unicode-unwrapped; # added 2020-02-02
|
rxvt_unicode = rxvt-unicode-unwrapped; # added 2020-02-02
|
||||||
subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # added 2021-03-31
|
subversion19 = throw "subversion19 has been removed as it has reached its end of life"; # added 2021-03-31
|
||||||
|
@ -30926,8 +30926,6 @@ in
|
|||||||
|
|
||||||
zrepl = callPackage ../tools/backup/zrepl { };
|
zrepl = callPackage ../tools/backup/zrepl { };
|
||||||
|
|
||||||
runwayml = callPackage ../applications/graphics/runwayml {};
|
|
||||||
|
|
||||||
uhubctl = callPackage ../tools/misc/uhubctl {};
|
uhubctl = callPackage ../tools/misc/uhubctl {};
|
||||||
|
|
||||||
kodelife = callPackage ../applications/graphics/kodelife {};
|
kodelife = callPackage ../applications/graphics/kodelife {};
|
||||||
|
Loading…
Reference in New Issue
Block a user