f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
27 lines
648 B
Nix
27 lines
648 B
Nix
{ stdenv, fetchgit, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
name = "lastwatch-${version}";
|
|
namePrefix = "";
|
|
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;
|
|
};
|
|
}
|