summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-01-24 21:59:10 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-01-24 23:18:44 -0300
commitc31a567a83d7a77661014a916830b61658cdf385 (patch)
tree4f8d854d9836152736e7796db2cdb61570f56c9f
parent1cff421c6417bc3ea5771be442a805ff46d915f8 (diff)
downloadnixpkgs-c31a567a83d7a77661014a916830b61658cdf385.tar
nixpkgs-c31a567a83d7a77661014a916830b61658cdf385.tar.gz
nixpkgs-c31a567a83d7a77661014a916830b61658cdf385.tar.bz2
nixpkgs-c31a567a83d7a77661014a916830b61658cdf385.tar.lz
nixpkgs-c31a567a83d7a77661014a916830b61658cdf385.tar.xz
nixpkgs-c31a567a83d7a77661014a916830b61658cdf385.tar.zst
nixpkgs-c31a567a83d7a77661014a916830b61658cdf385.zip
mpc_cli: put myself as new maintainer
Also, a cosmetical reformat.
-rw-r--r--pkgs/applications/audio/mpc/default.nix30
1 files changed, 19 insertions, 11 deletions
diff --git a/pkgs/applications/audio/mpc/default.nix b/pkgs/applications/audio/mpc/default.nix
index 0511367db3b..38f417ea2bc 100644
--- a/pkgs/applications/audio/mpc/default.nix
+++ b/pkgs/applications/audio/mpc/default.nix
@@ -1,12 +1,12 @@
 { lib
 , stdenv
 , fetchFromGitHub
+, libiconv
+, libmpdclient
 , meson
 , ninja
 , pkg-config
-, libmpdclient
 , sphinx
-, libiconv
 }:
 
 stdenv.mkDerivation rec {
@@ -14,21 +14,29 @@ stdenv.mkDerivation rec {
   version = "0.34";
 
   src = fetchFromGitHub {
-    owner  = "MusicPlayerDaemon";
-    repo   = "mpc";
-    rev    = "v${version}";
-    sha256 = "sha256-2FjYBfak0IjibuU+CNQ0y9Ei8hTZhynS/BK2DNerhVw=";
+    owner = "MusicPlayerDaemon";
+    repo = "mpc";
+    rev = "v${version}";
+    hash = "sha256-2FjYBfak0IjibuU+CNQ0y9Ei8hTZhynS/BK2DNerhVw=";
   };
 
-  buildInputs = [ libmpdclient ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
+  buildInputs = [
+    libmpdclient
+  ]
+  ++ lib.optionals stdenv.isDarwin [ libiconv ];
 
-  nativeBuildInputs = [ meson ninja pkg-config sphinx ];
+  nativeBuildInputs = [
+    meson
+    ninja
+    pkg-config
+    sphinx
+  ];
 
   meta = with lib; {
-    description = "A minimalist command line interface to MPD";
     homepage = "https://www.musicpd.org/clients/mpc/";
+    description = "A minimalist command line interface to MPD";
     license = licenses.gpl2;
-    maintainers = with maintainers; [ algorith ];
-    platforms = with platforms; linux ++ darwin;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = with platforms; unix;
   };
 }