1 { lib, stdenv, fetchurl, pkg-config, curl, openssl }:
3 stdenv.mkDerivation rec {
4 pname = "liblastfm-SF";
7 nativeBuildInputs = [ pkg-config ];
9 propagatedBuildInputs = [ curl openssl ];
12 url = "mirror://sourceforge/liblastfm/libclastfm-${version}.tar.gz";
13 sha256 = "0hpfflvfx6r4vvsbvdc564gkby8kr07p8ma7hgpxiy2pnlbpian9";
17 homepage = "http://liblastfm.sourceforge.net";
18 description = "Unofficial C lastfm library";
19 license = lib.licenses.gpl3;