nixpkgs/pkgs/development/libraries/liblastfm/default.nix

29 lines
962 B
Nix
Raw Normal View History

2017-04-08 03:33:27 +00:00
{ stdenv, fetchurl, qt4, pkgconfig, libsamplerate, fftwSinglePrec, which, cmake
, darwin }:
2014-10-07 19:20:48 +00:00
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 {
2014-02-13 02:13:15 +00:00
url = "https://github.com/lastfm/liblastfm/tarball/${version}";
name = "${name}.tar.gz";
2014-10-07 19:20:48 +00:00
sha256 = "09qiaxsxw6g2m7mvkffpfsi5wis8nl1x4lgnk0sa30859z54iw53";
};
prefixKey = "--prefix ";
propagatedBuildInputs = [ qt4 libsamplerate fftwSinglePrec ];
2014-02-13 02:13:15 +00:00
nativeBuildInputs = [ pkgconfig which cmake ];
2017-04-08 03:33:27 +00:00
buildInputs = stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.SystemConfiguration;
meta = {
homepage = https://github.com/lastfm/liblastfm;
2014-02-13 02:13:15 +00:00
repositories.git = git://github.com/lastfm/liblastfm.git;
description = "Official LastFM library";
inherit (qt4.meta) platforms;
maintainers = with stdenv.lib.maintainers; [ phreedom ];
};
}