pkgs: remove 'psst'

It has been included in nixpkgs.
This commit is contained in:
Bruno BELANYI 2022-09-22 14:32:52 +02:00
parent ad57052317
commit 84217afd07
2 changed files with 0 additions and 36 deletions

View File

@ -28,8 +28,6 @@ pkgs.lib.makeScope pkgs.newScope (pkgs: {
nolimips = pkgs.callPackage ./nolimips { };
psst = pkgs.callPackage ./psst { };
rofi-bluetooth = pkgs.callPackage ./rofi-bluetooth { };
unbound-zones-adblock = pkgs.callPackage ./unbound-zones-adblock { };

View File

@ -1,34 +0,0 @@
{ 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 ];
};
}