summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-08 17:48:07 +0100
committerGitHub <noreply@github.com>2021-02-08 17:48:07 +0100
commit4b20bbae221342e1b884a94b992edfa91e30b4b9 (patch)
tree430a188f0a618cd180b4826773863bb04ca47871
parent60af240fc02d29fba4a5122a5fb2172733623892 (diff)
parent913130b3395479dce83a4d522f55105c53b922b8 (diff)
downloadnixpkgs-4b20bbae221342e1b884a94b992edfa91e30b4b9.tar
nixpkgs-4b20bbae221342e1b884a94b992edfa91e30b4b9.tar.gz
nixpkgs-4b20bbae221342e1b884a94b992edfa91e30b4b9.tar.bz2
nixpkgs-4b20bbae221342e1b884a94b992edfa91e30b4b9.tar.lz
nixpkgs-4b20bbae221342e1b884a94b992edfa91e30b4b9.tar.xz
nixpkgs-4b20bbae221342e1b884a94b992edfa91e30b4b9.tar.zst
nixpkgs-4b20bbae221342e1b884a94b992edfa91e30b4b9.zip
Merge pull request #112070 from figsoda/master
-rw-r--r--maintainers/maintainer-list.nix6
-rw-r--r--pkgs/applications/audio/mmtc/default.nix23
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 31 insertions, 0 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index d227e348b10..17ced60c684 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -3071,6 +3071,12 @@
     githubId = 8182846;
     name = "Francesco Gazzetta";
   };
+  figsoda = {
+    email = "figsoda@pm.me";
+    github = "figsoda";
+    githubId = 40620903;
+    name = "figsoda";
+  };
   fionera = {
     email = "nix@fionera.de";
     github = "fionera";
diff --git a/pkgs/applications/audio/mmtc/default.nix b/pkgs/applications/audio/mmtc/default.nix
new file mode 100644
index 00000000000..0d1d2c5684f
--- /dev/null
+++ b/pkgs/applications/audio/mmtc/default.nix
@@ -0,0 +1,23 @@
+{ fetchFromGitHub, lib, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "mmtc";
+  version = "0.2.12";
+
+  src = fetchFromGitHub {
+    owner = "figsoda";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1chcnv8wql6v2vckpzvq6sxgpss7mnxaj008jdm8xalhw9d496s4";
+  };
+
+  cargoSha256 = "06b0hag3s5irvi57n0hc97agfw4sw783lkkl1b26iap6mfbvrqma";
+
+  meta = with lib; {
+    description = "Minimal mpd terminal client that aims to be simple yet highly configurable";
+    homepage = "https://github.com/figsoda/mmtc";
+    changelog = "https://github.com/figsoda/mmtc/blob/v${version}/CHANGELOG.md";
+    license = licenses.mpl20;
+    maintainers = with maintainers; [ figsoda ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 72fe7735860..57720afdc87 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -23550,6 +23550,8 @@ in
 
   mmsd = callPackage ../tools/networking/mmsd { };
 
+  mmtc = callPackage ../applications/audio/mmtc { };
+
   moc = callPackage ../applications/audio/moc { };
 
   mod-distortion = callPackage ../applications/audio/mod-distortion { };