Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / liblastfmSF / default.nix
blobf25ee3afae4a4609acce1edc0aef9cee5f02175c
1 { lib, stdenv, fetchurl, pkg-config, curl, openssl }:
3 stdenv.mkDerivation rec {
4   pname = "liblastfm-SF";
5   version = "0.5";
7   nativeBuildInputs = [ pkg-config ];
9   propagatedBuildInputs = [ curl openssl ];
11   src = fetchurl {
12     url = "mirror://sourceforge/liblastfm/libclastfm-${version}.tar.gz";
13     sha256 = "0hpfflvfx6r4vvsbvdc564gkby8kr07p8ma7hgpxiy2pnlbpian9";
14   };
16   meta = {
17     homepage = "https://liblastfm.sourceforge.net";
18     description = "Unofficial C lastfm library";
19     license = lib.licenses.gpl3;
20   };