mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
73 lines
1.9 KiB
Nix
73 lines
1.9 KiB
Nix
{ lib, fetchFromGitHub, rustPlatform, alsa-lib, atk, cairo, dbus, gdk-pixbuf, glib, gtk3, pango, pkg-config, makeDesktopItem }:
|
|
|
|
let
|
|
desktopItem = makeDesktopItem {
|
|
name = "Psst";
|
|
exec = "psst-gui";
|
|
comment = "Fast and multi-platform Spotify client with native GUI";
|
|
desktopName = "Psst";
|
|
type = "Application";
|
|
categories = [ "Audio" "AudioVideo" ];
|
|
icon = "psst";
|
|
terminal = false;
|
|
startupWMClass = "psst-gui";
|
|
};
|
|
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "psst";
|
|
version = "unstable-2024-08-19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpochyla";
|
|
repo = pname;
|
|
rev = "11bef15e66a3c9b0b991207d09a67c071b3dda02";
|
|
hash = "sha256-lKxWIUDouUUul7CpuTy30z/cLJAjFE9e0J1zyZ/PnIo=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"cubeb-0.13.0" = "sha256-l1JkKlq2qvvLwNLJ2DrIpAFYcRQyd6F8pAflmtnaXhU=";
|
|
"druid-0.8.3" = "sha256-hTB9PQf2TAhcLr64VjjQIr18mczwcNogDSRSN5dQULA=";
|
|
"druid-enums-0.1.0" = "sha256-KJvAgKxicx/g+4QRZq3iHt6MGVQbfOpyN+EhS6CyDZk=";
|
|
};
|
|
};
|
|
# specify the subdirectory of the binary crate to build from the workspace
|
|
buildAndTestSubdir = "psst-gui";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
atk
|
|
cairo
|
|
dbus
|
|
gdk-pixbuf
|
|
glib
|
|
gtk3
|
|
pango
|
|
];
|
|
|
|
patches = [
|
|
# Use a fixed build time, hard-code upstream URL instead of trying to read `.git`
|
|
./make-build-reproducible.patch
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm444 psst-gui/assets/logo_512.png $out/share/icons/hicolor/512x512/apps/${pname}.png
|
|
install -Dm444 -t $out/share/applications ${desktopItem}/share/applications/*
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = ./update.sh;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Fast and multi-platform Spotify client with native GUI";
|
|
homepage = "https://github.com/jpochyla/psst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vbrandl peterhoeg ];
|
|
mainProgram = "psst-gui";
|
|
};
|
|
}
|