2023-03-12 13:50:48 +01:00
|
|
|
{ lib
|
|
|
|
, bundlerApp
|
|
|
|
, bundlerUpdateScript
|
|
|
|
}:
|
|
|
|
|
|
|
|
bundlerApp rec {
|
|
|
|
pname = "coltrane";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "coltrane" ];
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript pname;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
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 = licenses.mit;
|
|
|
|
maintainers = [ maintainers.panaeon ];
|
2024-02-11 03:19:15 +01:00
|
|
|
mainProgram = "coltrane";
|
2023-03-12 13:50:48 +01:00
|
|
|
};
|
|
|
|
}
|