lol
1{ stdenv, fetchurl, pkgconfig, curl, openssl }:
2
3stdenv.mkDerivation rec {
4 name = "liblastfm-SF-0.3.2";
5
6 buildInputs = [ pkgconfig ];
7
8 propagatedBuildInputs = [ curl openssl ];
9
10 src = fetchurl {
11 url = "mirror://sourceforge/liblastfm/liblastfm-0.3.2.tar.gz";
12 sha256 = "1hk62giysi96h6cyjyph69nlv1v4vw45w3sx7i2m89i9aysd6qp7";
13 };
14
15 meta = {
16 homepage = http://liblastfm.sourceforge.net;
17 description = "Unofficial C lastfm library";
18 };
19}