mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
radio-cli: init at 2.3.1
This commit is contained in:
parent
055ee1d524
commit
46cfae2907
44
pkgs/by-name/ra/radio-cli/package.nix
Normal file
44
pkgs/by-name/ra/radio-cli/package.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
rustPlatform,
|
||||||
|
fetchFromGitHub,
|
||||||
|
makeWrapper,
|
||||||
|
pkg-config,
|
||||||
|
openssl,
|
||||||
|
mpv,
|
||||||
|
}:
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "radio-cli";
|
||||||
|
version = "2.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "margual56";
|
||||||
|
repo = "radio-cli";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-XN0IzU7+V0zUUXfOygWrZXQX09IEpVo2Rhwfv+Lny/E=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-XCzDNUZpyfu4gJr1lUx1/VbLkEv3OnJvYku0eEJbK5s=";
|
||||||
|
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram "$out/bin/radio-cli" \
|
||||||
|
--suffix PATH : ${lib.makeBinPath [ mpv ]}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Simple radio CLI written in rust";
|
||||||
|
homepage = "https://github.com/margual56/radio-cli";
|
||||||
|
changelog = "https://github.com/margual56/radio-cli/releases/tag/v${version}";
|
||||||
|
license = lib.licenses.gpl2Only;
|
||||||
|
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
|
||||||
|
mainProgram = "radio-cli";
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user