summary refs log tree commit diff
path: root/pkgs/development/libraries/liblastfmSF/default.nix
blob: fe3038c3249a5032a29cd8272d576e876a32890c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl, pkg-config, curl, openssl }:

stdenv.mkDerivation {
  name = "liblastfm-SF-0.5";

  nativeBuildInputs = [ pkg-config ];

  propagatedBuildInputs = [ curl openssl ];

  src = fetchurl {
    url = "mirror://sourceforge/liblastfm/libclastfm-0.5.tar.gz";
    sha256 = "0hpfflvfx6r4vvsbvdc564gkby8kr07p8ma7hgpxiy2pnlbpian9";
  };

  meta = {
    homepage = "http://liblastfm.sourceforge.net";
    description = "Unofficial C lastfm library";
    license = lib.licenses.gpl3;
  };
}