lol
1{ lib, stdenv, fetchurl, pkg-config, curl, openssl }:
2
3stdenv.mkDerivation rec {
4 pname = "liblastfm-SF";
5 version = "0.5";
6
7 nativeBuildInputs = [ pkg-config ];
8
9 propagatedBuildInputs = [ curl openssl ];
10
11 src = fetchurl {
12 url = "mirror://sourceforge/liblastfm/libclastfm-${version}.tar.gz";
13 sha256 = "0hpfflvfx6r4vvsbvdc564gkby8kr07p8ma7hgpxiy2pnlbpian9";
14 };
15
16 meta = {
17 homepage = "https://liblastfm.sourceforge.net";
18 description = "Unofficial C lastfm library";
19 license = lib.licenses.gpl3;
20 };
21}