26 lines
563 B
Nix
26 lines
563 B
Nix
{
|
|
lib,
|
|
bundlerApp,
|
|
bundlerUpdateScript,
|
|
}:
|
|
|
|
bundlerApp rec {
|
|
pname = "coltrane";
|
|
gemdir = ./.;
|
|
exes = [ "coltrane" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "coltrane";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/pedrozath/coltrane";
|
|
description = "Music calculation library/CLI";
|
|
longDescription = ''
|
|
coltrane allows to search for Notes, Chords, Scales for
|
|
guitar, bass, piano and ukelele
|
|
'';
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ panaeon ];
|
|
mainProgram = "coltrane";
|
|
};
|
|
}
|