created prostudiomasters package
This commit is contained in:
parent
33f0ff6312
commit
210a4084f7
2 changed files with 18 additions and 0 deletions
|
@ -52,6 +52,10 @@
|
|||
(pkgs.callPackage
|
||||
./webtoon-dl.nix
|
||||
{})
|
||||
# TODO: this package always needs to be called with the --in-process-gpu flag for some reason, can we automate that?
|
||||
(pkgs.callPackage
|
||||
./prostudiomasters.nix
|
||||
{})
|
||||
];
|
||||
|
||||
programs = {
|
||||
|
|
14
configurations/nixos/horizon/prostudiomasters.nix
Normal file
14
configurations/nixos/horizon/prostudiomasters.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
fetchurl,
|
||||
appimageTools,
|
||||
}: let
|
||||
pname = "prostudiomasters";
|
||||
version = "2.5.6";
|
||||
src = fetchurl {
|
||||
url = "https://download.prostudiomasters.com/linux/ProStudioMasters-${version}.AppImage";
|
||||
hash = "sha256-7owOwdcucFfl+JsVj+Seau2KOz0J4P/ep7WrBSNSmbs=";
|
||||
};
|
||||
in
|
||||
appimageTools.wrapType2 {
|
||||
inherit pname version src;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue