evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / lastfm / default.nix
blobda4bb54d2bf5dae77326932ce94b39b9c928f125
1 { lib
2 , buildDunePackage
3 , fetchFromGitHub
4 , re
5 , xmlplaylist
6 }:
8 buildDunePackage rec {
9   pname = "lastfm";
10   version = "0.3.4";
12   minimalOCamlVersion = "4.08";
14   src = fetchFromGitHub {
15     owner = "savonet";
16     repo = "ocaml-lastfm";
17     rev = "v${version}";
18     sha256 = "sha256-1te9B2+sUmkT/i2K5ueswWAWpvJf9rXob0zR4CMOJlg=";
19   };
21   propagatedBuildInputs = [
22     re
23     xmlplaylist
24   ];
26   meta = with lib; {
27     homepage = "https://github.com/savonet/ocaml-lastfm";
28     description = "OCaml API to lastfm radio and audioscrobbler";
29     license = licenses.lgpl21Only;
30     maintainers = with maintainers; [ dandellion ];
31   };