forked from mirrors/nixpkgs
Add despotify
This commit is contained in:
parent
4199b9e80a
commit
d50712e376
2 changed files with 36 additions and 0 deletions
34
pkgs/development/libraries/despotify/default.nix
Normal file
34
pkgs/development/libraries/despotify/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
stdenv, fetchsvn, openssl, zlib, libvorbis, pulseaudio, gstreamer, libao,
|
||||||
|
libtool, ncurses, glibc
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
name = "despotify";
|
||||||
|
|
||||||
|
src = fetchsvn {
|
||||||
|
url = "https://despotify.svn.sourceforge.net/svnroot/despotify";
|
||||||
|
rev = "521";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
openssl zlib libvorbis pulseaudio gstreamer libao libtool ncurses glibc
|
||||||
|
];
|
||||||
|
|
||||||
|
configurePhase = "cd src";
|
||||||
|
|
||||||
|
installPhase = "make LDCONFIG=true INSTALL_PREFIX=$out install";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Open source Spotify client and library";
|
||||||
|
longDescription = ''
|
||||||
|
despotify is a open source implementation of the Spotify API. This
|
||||||
|
package provides both a library and a few already quite useful,
|
||||||
|
proof-of-concept clients.
|
||||||
|
'';
|
||||||
|
homepage = "http://despotify.se";
|
||||||
|
license = stdenv.lib.licenses.bsd2;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -614,6 +614,8 @@ let
|
||||||
|
|
||||||
desktop_file_utils = callPackage ../tools/misc/desktop-file-utils { };
|
desktop_file_utils = callPackage ../tools/misc/desktop-file-utils { };
|
||||||
|
|
||||||
|
despotify = callPackage ../development/libraries/despotify { };
|
||||||
|
|
||||||
dev86 = callPackage ../development/compilers/dev86 {
|
dev86 = callPackage ../development/compilers/dev86 {
|
||||||
/* Using GNU Make 3.82 leads to this:
|
/* Using GNU Make 3.82 leads to this:
|
||||||
make[4]: *** No rule to make target `__ldivmod.o)'
|
make[4]: *** No rule to make target `__ldivmod.o)'
|
||||||
|
|
Loading…
Add table
Reference in a new issue