2016-08-17 03:53:14 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, llvmPackages, pkgconfig, mpd_clientlib, openssl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ympd-${version}";
|
|
|
|
version = "1.3.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "notandy";
|
|
|
|
repo = "ympd";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1nvb19jd556v2h2bi7w4dcl507p3p8xvjkqfzrcsy7ccy3502brq";
|
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cmake mpd_clientlib openssl ];
|
2016-08-17 03:53:14 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.ympd.org;
|
2016-08-17 03:53:14 +01:00
|
|
|
description = "Standalone MPD Web GUI written in C, utilizing Websockets and Bootstrap/JS";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.siddharthist ];
|
2016-08-17 12:19:41 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-08-17 03:53:14 +01:00
|
|
|
};
|
|
|
|
}
|