mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
79 lines
1.9 KiB
Nix
79 lines
1.9 KiB
Nix
{ lib, fetchFromGitHub
|
|
, meson, ninja, pkg-config, wrapGAppsHook
|
|
, desktop-file-utils, gsettings-desktop-schemas, libnotify, libhandy
|
|
, python3Packages, gettext
|
|
, appstream-glib, gdk-pixbuf, glib, gobject-introspection, gspell, gtk3
|
|
, steam-run-native
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "bottles";
|
|
version = "3.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bottlesdevs";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1izks01010akjf83xvi70dr4yzgk6yr84kd0slzz22yq204pdh5m";
|
|
};
|
|
|
|
postPatch = ''
|
|
chmod +x build-aux/meson/postinstall.py
|
|
patchShebangs build-aux/meson/postinstall.py
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook
|
|
gettext
|
|
appstream-glib
|
|
desktop-file-utils
|
|
];
|
|
|
|
buildInputs = [
|
|
gdk-pixbuf
|
|
glib
|
|
gobject-introspection
|
|
gsettings-desktop-schemas
|
|
gspell
|
|
gtk3
|
|
libhandy
|
|
libnotify
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pycairo
|
|
pygobject3
|
|
lxml
|
|
dbus-python
|
|
gst-python
|
|
liblarch
|
|
] ++ [ steam-run-native ];
|
|
|
|
format = "other";
|
|
strictDeps = false; # broken with gobject-introspection setup hook, see https://github.com/NixOS/nixpkgs/issues/56943
|
|
dontWrapGApps = true; # prevent double wrapping
|
|
|
|
preConfigure = ''
|
|
substituteInPlace build-aux/meson/postinstall.py \
|
|
--replace "'update-desktop-database'" "'${desktop-file-utils}/bin/update-desktop-database'"
|
|
substituteInPlace src/runner.py \
|
|
--replace " {runner}" " ${steam-run-native}/bin/steam-run {runner}" \
|
|
--replace " {dxvk_setup}" " ${steam-run-native}/bin/steam-run {dxvk_setup}"
|
|
'';
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An easy-to-use wineprefix manager";
|
|
homepage = "https://usebottles.com/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ bloomvdomino shamilton ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|