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

stdenv.mkDerivation rec {
  pname = "liblastfm-SF";
  version = "0.5";

  nativeBuildInputs = [ pkg-config ];

  propagatedBuildInputs = [ curl openssl ];

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

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