nixpkgs/pkgs/applications/audio/lastfmsubmitd/default.nix

22 lines
581 B
Nix
Raw Normal View History

2018-09-01 13:34:09 +02:00
{ lib, fetchurl, pythonPackages }:
2014-01-02 11:57:08 +01:00
pythonPackages.buildPythonApplication rec {
pname = "lastfmsubmitd";
2014-01-02 11:57:08 +01:00
version = "1.0.6";
src = fetchurl {
url = "https://www.red-bean.com/decklin/lastfmsubmitd/lastfmsubmitd-${version}.tar.gz";
2014-01-02 11:57:08 +01:00
sha256 = "c2636d5095a95167366bacd458624d67b046e060244fa54ba2c2e3efb79f9b0e";
};
doCheck = false;
installCommand = "python setup.py install --prefix=$out";
meta = {
homepage = https://www.red-bean.com/decklin/lastfmsubmitd/;
2018-09-01 13:34:09 +02:00
license = lib.licenses.mit;
2014-01-02 11:57:08 +01:00
description = "An last.fm audio scrobbler and daemon";
};
}