pkgs: add psst
This commit is contained in:
parent
ce25ed6445
commit
f86a04f888
|
@ -26,6 +26,8 @@ pkgs.lib.makeScope pkgs.newScope (pkgs: {
|
||||||
|
|
||||||
nolimips = pkgs.callPackage ./nolimips { };
|
nolimips = pkgs.callPackage ./nolimips { };
|
||||||
|
|
||||||
|
psst = pkgs.callPackage ./psst { };
|
||||||
|
|
||||||
rofi-bluetooth = pkgs.callPackage ./rofi-bluetooth { };
|
rofi-bluetooth = pkgs.callPackage ./rofi-bluetooth { };
|
||||||
|
|
||||||
unbound-zones-adblock = pkgs.callPackage ./unbound-zones-adblock { };
|
unbound-zones-adblock = pkgs.callPackage ./unbound-zones-adblock { };
|
||||||
|
|
34
pkgs/psst/default.nix
Normal file
34
pkgs/psst/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib, alsa-lib, cairo, dbus, fetchFromGitHub, gtk3, openssl, pkg-config, rustPlatform }:
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "psst";
|
||||||
|
version = "unstable-2022-01-13";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jpochyla";
|
||||||
|
repo = "psst";
|
||||||
|
rev = "8f142a3232a706537c8477bff43d2e52309f6b78";
|
||||||
|
sha256 = "sha256-YA9p6KHuZXt43OrfShO5d3Cj8L8GPpczRQlncJqM7QI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
alsa-lib
|
||||||
|
cairo
|
||||||
|
dbus
|
||||||
|
gtk3
|
||||||
|
openssl
|
||||||
|
];
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-iA/ja7B73JyiXQ9kBzk1C5wtX+HPBrngCS+8rFDHbcs=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Fast and multi-platform Spotify client with native GUI";
|
||||||
|
homepage = "https://github.com/jpochyla/psst";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ ambroisie ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue