forked from mirrors/nixpkgs
squeezelite: init at git 2016-05-27
This commit is contained in:
parent
4da067bf28
commit
7e9fbf4a1d
26
pkgs/applications/audio/squeezelite/default.nix
Normal file
26
pkgs/applications/audio/squeezelite/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub, alsaLib, faad2, flac, libmad, libvorbis, mpg123 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "squeezelite-git-2016-05-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ralph-irving";
|
||||
repo = "squeezelite";
|
||||
rev = "e37ed17fed9e11a7346cbe9f1e1deeccc051f42e";
|
||||
sha256 = "15ihx2dbp4kr6k6r50g9q5npqad5zyv8nqf5cr37bhg964syvbdm";
|
||||
};
|
||||
|
||||
buildInputs = [ alsaLib faad2 flac libmad libvorbis mpg123 ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp squeezelite $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Lightweight headless squeezebox client emulator";
|
||||
homepage = https://github.com/ralph-irving/squeezelite;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -14229,6 +14229,8 @@ in
|
|||
apiKey = config.libspotify.apiKey or null;
|
||||
};
|
||||
|
||||
squeezelite = callPackage ../applications/audio/squeezelite { };
|
||||
|
||||
ltunify = callPackage ../tools/misc/ltunify { };
|
||||
|
||||
src = callPackage ../applications/version-management/src/default.nix {
|
||||
|
|
Loading…
Reference in a new issue