mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
psst: init at unstable-2022-01-25
This commit is contained in:
parent
d48f3c496a
commit
8547a003aa
2 changed files with 41 additions and 0 deletions
39
pkgs/applications/audio/psst/default.nix
Normal file
39
pkgs/applications/audio/psst/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform, alsa-lib, atk, cairo, dbus, gdk-pixbuf, glib, gtk3, pango, pkg-config }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "psst";
|
||||
version = "unstable-2022-01-25";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jpochyla";
|
||||
repo = pname;
|
||||
rev = "1627cd4a301dd51e9ee3034294cd7b0d94d02ddc";
|
||||
sha256 = "sha256-kepvYhmieXx6Hj79aqaA7tYUnueaBsNx0U4lV7K6LuU=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-DcdlQudGyWUUAacV7pAOLDvhd1fgAkEesdxDkHSYm4M=";
|
||||
# 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
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast and multi-platform Spotify client with native GUI";
|
||||
homepage = "https://github.com/jpochyla/psst";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.vbrandl ];
|
||||
};
|
||||
}
|
|
@ -28963,6 +28963,8 @@ with pkgs;
|
|||
|
||||
spotifywm = callPackage ../applications/audio/spotifywm { };
|
||||
|
||||
psst = callPackage ../applications/audio/psst { };
|
||||
|
||||
squeezelite = callPackage ../applications/audio/squeezelite { };
|
||||
|
||||
ltunify = callPackage ../tools/misc/ltunify { };
|
||||
|
|
Loading…
Reference in a new issue