about summary refs log tree commit diff
path: root/pkgs/applications/misc/coltrane/default.nix
blob: f4c1ccb41e9abe70c2cc784db6b4c776a2575adf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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 ];
    mainProgram = "coltrane";
  };
}