about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/audio/lastwatch/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/lastwatch/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/lastwatch/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/nixpkgs/pkgs/applications/audio/lastwatch/default.nix b/nixpkgs/pkgs/applications/audio/lastwatch/default.nix
deleted file mode 100644
index d2ef7434c4db..000000000000
--- a/nixpkgs/pkgs/applications/audio/lastwatch/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchgit, python2Packages }:
-
-python2Packages.buildPythonApplication rec {
-  pname = "lastwatch";
-  version = "0.4.1";
-
-  src = fetchgit {
-    url = "git://github.com/aszlig/LastWatch.git";
-    rev = "refs/tags/v${version}";
-    sha256 = "0nlng3595j5jvnikk8i5hb915zak5zsmfn2306cc4gfcns9xzjwp";
-  };
-
-  propagatedBuildInputs = with python2Packages; [
-    pyinotify
-    pylast
-    mutagen
-  ];
-
-  meta = {
-    homepage = https://github.com/aszlig/LastWatch;
-    description = "An inotify-based last.fm audio scrobbler";
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.linux;
-  };
-}