summary refs log tree commit diff
path: root/pkgs/tools/audio/mpdsync
diff options
context:
space:
mode:
authorArmeen Mahdian <mahdianarmeen@gmail.com>2022-04-26 10:06:37 -0500
committerArmeen Mahdian <mahdianarmeen@gmail.com>2022-04-26 10:06:37 -0500
commit43f50c07a637a81c03c6c7440f3a719b08bffc8f (patch)
tree78b4c8c88560790eeb346c45f06262850382626b /pkgs/tools/audio/mpdsync
parent6e4f70e8804273cff4e256e33c0568c202aa24b3 (diff)
downloadnixpkgs-43f50c07a637a81c03c6c7440f3a719b08bffc8f.tar
nixpkgs-43f50c07a637a81c03c6c7440f3a719b08bffc8f.tar.gz
nixpkgs-43f50c07a637a81c03c6c7440f3a719b08bffc8f.tar.bz2
nixpkgs-43f50c07a637a81c03c6c7440f3a719b08bffc8f.tar.lz
nixpkgs-43f50c07a637a81c03c6c7440f3a719b08bffc8f.tar.xz
nixpkgs-43f50c07a637a81c03c6c7440f3a719b08bffc8f.tar.zst
nixpkgs-43f50c07a637a81c03c6c7440f3a719b08bffc8f.zip
mpdsync: remove
Diffstat (limited to 'pkgs/tools/audio/mpdsync')
-rw-r--r--pkgs/tools/audio/mpdsync/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/tools/audio/mpdsync/default.nix b/pkgs/tools/audio/mpdsync/default.nix
deleted file mode 100644
index c89404fbba1..00000000000
--- a/pkgs/tools/audio/mpdsync/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, python2, fetchFromGitHub }:
-with python2.pkgs;
-stdenv.mkDerivation {
-  pname = "mpdsync";
-  version = "unstable-2017-06-15";
-
-  src = fetchFromGitHub {
-    owner = "alphapapa";
-    repo = "mpdsync";
-    rev = "da90058f44dd9578cc5f2fb96a1fb2b26da40d07";
-    sha256 = "1mfg3ipqj5dvyyqbgp6ia6sc1ja5gmm2c9mfrwx0jw2dl182if6q";
-  };
-
-  pythonPath = [ mpd2 ];
-
-  nativeBuildInputs = [
-    wrapPython
-  ];
-
-  dontBuild = true;
-
-  installPhase = "install -D mpdsync.py $out/bin/mpdsync";
-  postFixup = "wrapPythonPrograms";
-
-}