nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 23 lines 521 B view raw
1{ lib 2, bundlerApp 3, bundlerUpdateScript 4}: 5 6bundlerApp rec { 7 pname = "coltrane"; 8 gemdir = ./.; 9 exes = [ "coltrane" ]; 10 11 passthru.updateScript = bundlerUpdateScript pname; 12 13 meta = with lib; { 14 homepage = "https://github.com/pedrozath/coltrane"; 15 description = "A 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 }; 23}