2021-01-04 12:02:21 +11:00
|
|
|
{ stdenv
|
2021-02-01 08:45:20 +11:00
|
|
|
, lib
|
2021-01-04 12:02:21 +11:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
|
|
|
, openssl
|
|
|
|
|
|
|
|
# GUI
|
|
|
|
, withGui ? true
|
|
|
|
, copyDesktopItems
|
|
|
|
, makeDesktopItem
|
|
|
|
, gtk3
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2021-02-01 08:45:20 +11:00
|
|
|
inherit (lib) optional optionals;
|
2021-01-04 12:02:21 +11:00
|
|
|
in
|
|
|
|
|
|
|
|
assert withGui -> gtk3.meta.available;
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "psst";
|
2021-01-24 17:08:22 +11:00
|
|
|
version = "20210122.gec114ac";
|
2021-01-04 12:02:21 +11:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jpochyla";
|
|
|
|
repo = "psst";
|
2021-01-24 17:08:22 +11:00
|
|
|
rev = "ec114ac8299179c8dd51bc026d6060dc75658b83";
|
|
|
|
sha256 = "02mh6hjnlimadc3w899hccss31p1r4sxgb5880zwn7yiycbq3yyj";
|
2021-01-04 12:02:21 +11:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
2021-01-24 17:08:22 +11:00
|
|
|
cargoSha256 = "1m01rycnpy9asspih1x9l5ppfbjnqcfdycmzgkrmdwzah3x8s8xc";
|
2021-01-04 12:02:21 +11:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ]
|
|
|
|
++ optional withGui copyDesktopItems;
|
|
|
|
|
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ optional withGui gtk3;
|
|
|
|
|
|
|
|
cargoBuildFlags = optionals (!withGui) [
|
|
|
|
"--workspace"
|
|
|
|
"--exclude"
|
|
|
|
"psst-gui"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Unable to exclude targets from the check phase as it doesn't respect
|
|
|
|
# `cargoBuildFlags`; to save from attempting to build the GUI without meaning
|
|
|
|
# to, don't bother checking for CLI-only builds.
|
|
|
|
# https://github.com/NixOS/nixpkgs/blob/77d190f10931c1d06d87bf6d772bf65346c71777/pkgs/build-support/rust/default.nix#L241
|
|
|
|
doCheck = withGui;
|
|
|
|
|
|
|
|
desktopItems = optionals withGui [
|
|
|
|
(makeDesktopItem {
|
|
|
|
name = pname;
|
|
|
|
desktopName = "psst";
|
|
|
|
genericName = "Spotify Player";
|
|
|
|
categories = "AudioVideo;Audio;Network;Player;";
|
|
|
|
comment = "Spotify client with native GUI";
|
|
|
|
exec = "psst-gui";
|
|
|
|
extraEntries = "Keywords=spotify;music;";
|
|
|
|
icon = "spotify";
|
|
|
|
type = "Application";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-02-01 08:45:20 +11:00
|
|
|
meta = with lib; {
|
2021-01-04 12:02:21 +11:00
|
|
|
description = "Fast and multi-platform Spotify client with native GUI ";
|
|
|
|
homepage = "https://github.com/jpochyla/psst";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|