mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
41 lines
929 B
Nix
41 lines
929 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, darwin
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "nowplaying-cli";
|
|
version = "1.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kirtan-shah";
|
|
repo = "nowplaying-cli";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-FkyrtgsGzpK2rLNr+oxfPUbX43TVXYeiBg7CN1JUg8Y=";
|
|
};
|
|
|
|
buildInputs = [
|
|
darwin.apple_sdk.frameworks.Foundation
|
|
darwin.apple_sdk.frameworks.AppKit
|
|
darwin.apple_sdk.frameworks.Cocoa
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D nowplaying-cli $out/bin/nowplaying-cli
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "macOS command-line utility for retrieving currently playing media";
|
|
homepage = "https://github.com/kirtan-shah/nowplaying-cli";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ emilytrau ];
|
|
platforms = platforms.darwin;
|
|
mainProgram = "nowplaying-cli";
|
|
};
|
|
})
|