3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/bottles/default.nix

111 lines
2.7 KiB
Nix
Raw Normal View History

2022-04-20 23:19:45 +01:00
{ lib, fetchFromGitHub, gitUpdater
2021-02-20 20:07:22 +00:00
, meson, ninja, pkg-config, wrapGAppsHook
, desktop-file-utils, gsettings-desktop-schemas, libnotify, libhandy, webkitgtk
2021-02-20 20:07:22 +00:00
, python3Packages, gettext
, appstream-glib, gdk-pixbuf, glib, gobject-introspection, gspell, gtk3, gtksourceview4, gnome
, steam, xdg-utils, pciutils, cabextract, wineWowPackages
, freetype, p7zip, gamemode, mangohud
, bottlesExtraLibraries ? pkgs: [ ] # extra packages to add to steam.run multiPkgs
, bottlesExtraPkgs ? pkgs: [ ] # extra packages to add to steam.run targetPkgs
2021-02-20 20:07:22 +00:00
}:
let
steam-run = (steam.override {
# required by wine runner `caffe`
extraLibraries = pkgs: with pkgs; [ libunwind libusb1 gnutls ]
++ bottlesExtraLibraries pkgs;
extraPkgs = pkgs: [ ]
++ bottlesExtraPkgs pkgs;
}).run;
in
2021-02-20 20:07:22 +00:00
python3Packages.buildPythonApplication rec {
pname = "bottles";
version = "2022.5.28-trento-3";
2021-02-20 20:07:22 +00:00
src = fetchFromGitHub {
owner = "bottlesdevs";
repo = pname;
rev = version;
sha256 = "sha256-KIDLRqDLFTsVAczRpTchnUtKJfVHqbYzf8MhIR5UdYY=";
2021-02-20 20:07:22 +00:00
};
postPatch = ''
chmod +x build-aux/meson/postinstall.py
patchShebangs build-aux/meson/postinstall.py
substituteInPlace src/backend/wine/winecommand.py \
--replace \
'self.__get_runner()' \
'(lambda r: (f"${steam-run}/bin/steam-run {r}", r)[r == "wine" or r == "wine64"])(self.__get_runner())'
2021-02-20 20:07:22 +00:00
'';
nativeBuildInputs = [
meson
ninja
pkg-config
wrapGAppsHook
gettext
appstream-glib
desktop-file-utils
];
buildInputs = [
gdk-pixbuf
glib
gobject-introspection
gsettings-desktop-schemas
gspell
gtk3
gtksourceview4
2021-04-26 14:26:26 +01:00
libhandy
2021-02-20 20:07:22 +00:00
libnotify
webkitgtk
gnome.adwaita-icon-theme
2021-02-20 20:07:22 +00:00
];
propagatedBuildInputs = with python3Packages; [
pyyaml
pytoml
requests
2021-02-20 20:07:22 +00:00
pycairo
pygobject3
lxml
dbus-python
gst-python
liblarch
patool
markdown
] ++ [
steam-run
xdg-utils
pciutils
cabextract
wineWowPackages.minimal
freetype
p7zip
gamemode # programs.gamemode.enable
mangohud
];
2021-02-20 20:07:22 +00:00
format = "other";
strictDeps = false; # broken with gobject-introspection setup hook, see https://github.com/NixOS/nixpkgs/issues/56943
dontWrapGApps = true; # prevent double wrapping
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
2022-04-20 23:19:45 +01:00
passthru.updateScript = gitUpdater {
inherit pname version;
};
2021-02-20 20:07:22 +00:00
meta = with lib; {
description = "An easy-to-use wineprefix manager";
2021-04-26 14:26:26 +01:00
homepage = "https://usebottles.com/";
downloadPage = "https://github.com/bottlesdevs/Bottles/releases";
2021-02-20 20:07:22 +00:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ psydvl shamilton ];
2021-02-20 20:07:22 +00:00
platforms = platforms.linux;
};
}