mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
|
|
pkg-config,
|
|
glib,
|
|
pango,
|
|
gtk3,
|
|
wrapGAppsHook4,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hyprwall";
|
|
version = "0.1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprutils";
|
|
repo = "hyprwall";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-A4lOEO7xKdKCUGv0scrGlwgkM8ekAWErzaN1DdgMMlA=";
|
|
};
|
|
|
|
cargoHash = "sha256-ZyVHkQGv+THb2cAHH3V8nb3x9ZmpoSdR8CV7AiWQ8as=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
glib
|
|
pango
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
# Required in build process, prevents gdk-sys build error.
|
|
buildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm644 hyprwall.desktop -t $out/share/applications
|
|
install -Dm644 hyprwall.png -t $out/share/pixmaps
|
|
substituteInPlace "$out/share/applications/hyprwall.desktop" \
|
|
--replace-fail 'Exec=/usr/bin/hyprwall' "Exec=hyprwall"
|
|
'';
|
|
|
|
meta = {
|
|
description = "GUI for setting wallpapers with hyprpaper";
|
|
homepage = "https://github.com/hyprutils/hyprwall";
|
|
changelog = "https://github.com/hyprutils/hyprwall/releases/tag/v${version}";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ genga898 ];
|
|
mainProgram = "hyprwall";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|