fum: init at 0.4.3

This commit is contained in:
Braian A. Diez
2025-01-21 13:03:57 -03:00
parent 1b33f1d9a5
commit 036dea4e0d
+46
View File
@@ -0,0 +1,46 @@
{
lib,
rustPlatform,
fetchFromGitHub,
autoPatchelfHook,
stdenv,
openssl,
dbus,
pkg-config,
libgcc,
}:
rustPlatform.buildRustPackage rec {
pname = "fum";
version = "0.4.3";
src = fetchFromGitHub {
owner = "qxb3";
repo = "fum";
tag = "v${version}";
hash = "sha256-VRcQWwO80xFn5A21yjRsGqnnWkhWfsJxxEiw78NWJPM=";
};
cargoHash = "sha256-GW3/SqQlEUTMtvOgnMGhcREOHz/V2qtjtCAzFFKMNb4=";
nativeBuildInputs = [
autoPatchelfHook
pkg-config
];
buildInputs = [
openssl
dbus
libgcc
];
doCheck = false;
meta = {
description = "Fully ricable tui-based music client";
homepage = "https://github.com/qxb3/fum";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ linuxmobile ];
platforms = lib.platforms.linux;
mainProgram = "fum";
};
}