mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, wrapGAppsHook4
|
|
, libadwaita
|
|
, distrobox
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "boxbuddy";
|
|
version = "2.2.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Dvlv";
|
|
repo = "BoxBuddyRS";
|
|
rev = version;
|
|
hash = "sha256-PoPIIwe2SlK/iQTyqIhMG0dRobU98L5hnOciMmi9coo=";
|
|
};
|
|
|
|
cargoHash = "sha256-En5TVCW/URJEry4sTd+vdi8K1YO2L0X5pYu/TGsrx6U=";
|
|
|
|
# The software assumes it is installed either in flatpak or in the home directory
|
|
# so the xdg data path needs to be patched here
|
|
postPatch = ''
|
|
substituteInPlace src/utils.rs \
|
|
--replace-fail '{data_home}/locale' "$out/share/locale" \
|
|
--replace-fail '{data_home}/icons/boxbuddy/{icon}' "$out/share/icons/boxbuddy/{icon}"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
libadwaita
|
|
];
|
|
|
|
postInstall = ''
|
|
cp icons/* ./
|
|
XDG_DATA_HOME=$out/share INSTALL_DIR=$out ./scripts/install.sh
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix PATH : ${lib.makeBinPath [ distrobox ]}
|
|
)
|
|
'';
|
|
|
|
doCheck = false; # No checks defined
|
|
|
|
meta = with lib; {
|
|
description = "Unofficial GUI for managing your Distroboxes, written with GTK4 + Libadwaita";
|
|
homepage = "https://dvlv.github.io/BoxBuddyRS";
|
|
license = licenses.mit;
|
|
mainProgram = "boxbuddy-rs";
|
|
maintainers = with maintainers; [ aleksana ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|