summary refs log tree commit diff
path: root/pkgs/development/libraries/liblastfm/default.nix
blob: ad578ac272b1fd6298233dc7d0bf5698c30d6937 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl, qt4, pkgconfig, libsamplerate, fftwSinglePrec, which, cmake }:

let version = "1.0.9"; in

stdenv.mkDerivation rec {
  name = "liblastfm-${version}";

  # Upstream does not package git tags as tarballs. Get tarball from github.
  src = fetchurl {
    url = "https://github.com/lastfm/liblastfm/tarball/${version}";
    name = "${name}.tar.gz";
    sha256 = "09qiaxsxw6g2m7mvkffpfsi5wis8nl1x4lgnk0sa30859z54iw53";
  };

  prefixKey = "--prefix ";
  propagatedBuildInputs = [ qt4 libsamplerate fftwSinglePrec ];
  nativeBuildInputs = [ pkgconfig which cmake ];

  meta = {
    homepage = http://github.com/lastfm/liblastfm;
    repositories.git = git://github.com/lastfm/liblastfm.git;
    description = "Official LastFM library";
    inherit (qt4.meta) platforms;
    maintainers = with stdenv.lib.maintainers; [ urkud phreedom ];
  };
}