mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
24 lines
549 B
Nix
24 lines
549 B
Nix
{ 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";
|
|
};
|
|
}
|