mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
91eae85639
* termusic: 0.7.10 -> 0.7.11 * termusic: sort attributes alphabetically, remove `with lib;` * termusic: fix builds on Darwin * termusic: fix builds on Darwin * termusic: fix builds on x86_64 Darwin * termusic: fix builds on Darwin * Revert "termusic: fix builds on Darwin" This reverts commit90670409e9
. This reverts commitf137ccf109
. * termusic: fix builds on Darwin * termusic: fix builds on Darwin --------- Co-authored-by: Pol Dellaiera <pol.dellaiera@protonmail.com>
67 lines
1.1 KiB
Nix
67 lines
1.1 KiB
Nix
{
|
|
alsa-lib
|
|
, AppKit
|
|
, CoreAudio
|
|
, CoreGraphics
|
|
, dbus
|
|
, Foundation
|
|
, fetchFromGitHub
|
|
, glib
|
|
, gst_all_1
|
|
, IOKit
|
|
, lib
|
|
, MediaPlayer
|
|
, openssl
|
|
, pkg-config
|
|
, protobuf
|
|
, rustPlatform
|
|
, Security
|
|
, sqlite
|
|
, stdenv
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "termusic";
|
|
version = "0.7.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tramhao";
|
|
repo = "termusic";
|
|
rev = "v${version}";
|
|
hash = "sha256-ykOBXM/WF+zasAt+6mgY2aSFCpGaYcqk+YI7YLM3MWs=";
|
|
};
|
|
|
|
cargoHash = "sha256-BrOpU0RFdlRXQIMjfHfs/XYIdBCYKFSA+5by/rGzC8Y=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
protobuf
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
glib
|
|
gst_all_1.gstreamer
|
|
openssl
|
|
sqlite
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
AppKit
|
|
CoreAudio
|
|
CoreGraphics
|
|
Foundation
|
|
IOKit
|
|
MediaPlayer
|
|
Security
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
alsa-lib
|
|
];
|
|
|
|
meta = {
|
|
description = "Terminal Music Player TUI written in Rust";
|
|
homepage = "https://github.com/tramhao/termusic";
|
|
license = with lib.licenses; [ gpl3Only ];
|
|
maintainers = with lib.maintainers; [ devhell ];
|
|
};
|
|
}
|