biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / coltrane / default.nix
blobf4c1ccb41e9abe70c2cc784db6b4c776a2575adf
1 { lib
2 , bundlerApp
3 , bundlerUpdateScript
4 }:
6 bundlerApp rec {
7   pname = "coltrane";
8   gemdir = ./.;
9   exes = [ "coltrane" ];
11   passthru.updateScript = bundlerUpdateScript pname;
13   meta = with lib; {
14     homepage = "https://github.com/pedrozath/coltrane";
15     description = "Music calculation library/CLI";
16     longDescription = ''
17       coltrane allows to search for Notes, Chords, Scales for
18       guitar, bass, piano and ukelele
19     '';
20     license = licenses.mit;
21     maintainers = [ maintainers.panaeon ];
22     mainProgram = "coltrane";
23   };