842e80dd60
svn path=/nixpkgs/trunk/; revision=23954
20 lines
461 B
Nix
20 lines
461 B
Nix
{ stdenv, fetchurl, pkgconfig, curl, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "liblastfm-SF-0.3.2";
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ curl openssl ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/liblastfm/liblastfm-0.3.2.tar.gz";
|
|
sha256 = "1hk62giysi96h6cyjyph69nlv1v4vw45w3sx7i2m89i9aysd6qp7";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://liblastfm.sourceforge.net;
|
|
description = "Unofficial C lastfm library";
|
|
};
|
|
}
|