aboutsummaryrefslogtreecommitdiff
path: root/tools/music-organizer/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-06-18 14:41:47 -0700
committerFranck Cuny <franck@fcuny.net>2022-06-18 14:43:39 -0700
commit4b3f9bf48ad2d0dd959bb68e0728a9a9bc625568 (patch)
tree335918a26d056583e74f59cc388d78084f700f35 /tools/music-organizer/default.nix
parentfeat(tools/git-blame-stats): add the CLI with default git configuration (diff)
downloadinfra-4b3f9bf48ad2d0dd959bb68e0728a9a9bc625568.tar.gz
feat(tools/music-organizer): add a CLI to organize my music
This CLI can be used on the NAS to import an album in my music collection. Change-Id: I5749e34b55bead846e9341fca29e648d3859fc8f Reviewed-on: https://cl.fcuny.net/c/world/+/448 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'tools/music-organizer/default.nix')
-rw-r--r--tools/music-organizer/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/music-organizer/default.nix b/tools/music-organizer/default.nix
new file mode 100644
index 0000000..1242e34
--- /dev/null
+++ b/tools/music-organizer/default.nix
@@ -0,0 +1,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 = [ ];
+ };
+}