System Gen50 @ 2025-05-29-19:58:48 by jonas@monolith

This commit is contained in:
Jonas Röger 2025-05-29 19:58:49 +02:00
parent 5145c63c72
commit 58e50782d6
3 changed files with 23 additions and 0 deletions

View File

@ -80,6 +80,7 @@
firefox
gimp
git
hive.crossover
hive.transcode-davinci-resolve
inputs.dzgui-nix.packages.${pkgs.stdenv.system}.default
insomnia

21
pkgs/crossover.nix Normal file
View File

@ -0,0 +1,21 @@
{
appimageTools,
fetchurl,
makeWrapper,
...
}: let
version = "3.1.5";
in
appimageTools.wrapType2 {
pname = "crossover";
inherit version;
src = fetchurl {
url = "https://github.com/lacymorrow/crossover/releases/download/v${version}/CrossOver-${version}-x86_64.AppImage";
sha256 = "sha256-64RPal8n1PJh1LB+CTyNFt04Pw1lVgcsyc63S8yQ/DA=";
};
nativeBuildInputs = [makeWrapper];
extraInstallCommands = ''
wrapProgram $out/bin/crossover --add-flags "--no-sandbox"
'';
}

View File

@ -1,5 +1,6 @@
final: _: {
hive = {
crossover = final.callPackage ./crossover.nix {};
transcode-davinci-resolve = final.callPackage ./transcode-davinci-resolve {};
};
}