about summary refs log tree commit diff
path: root/tools/music-organizer/default.nix
blob: 1242e34691b0834e2feecfb692e0f420e60d884d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, ... }:

pkgs.buildGoModule rec {
  name = "music-organizer";
  src = ./.;
  vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
  nativeBuildInputs = with pkgs; [ go ];

  meta = with pkgs.lib; {
    description = "CLI to organize my music in folders.";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = [ ];
  };
}