mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, libmpdclient
|
|
, openssl
|
|
, lua5_3
|
|
, libid3tag
|
|
, flac
|
|
, pcre2
|
|
, gzip
|
|
, perl
|
|
, jq
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "mympd";
|
|
version = "15.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jcorporation";
|
|
repo = "myMPD";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-rZfpGvxDV8KWGfQJ+mXsxLI8DIMSM0D9A3yrEZ+Zc38=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
gzip
|
|
perl
|
|
jq
|
|
];
|
|
preConfigure = ''
|
|
env MYMPD_BUILDDIR=$PWD/build ./build.sh createassets
|
|
'';
|
|
buildInputs = [
|
|
libmpdclient
|
|
openssl
|
|
lua5_3
|
|
libid3tag
|
|
flac
|
|
pcre2
|
|
];
|
|
|
|
cmakeFlags = [
|
|
# Otherwise, it tries to parse $out/etc/mympd.conf on startup.
|
|
"-DCMAKE_INSTALL_SYSCONFDIR=/etc"
|
|
# similarly here
|
|
"-DCMAKE_INSTALL_LOCALSTATEDIR=/var/lib/mympd"
|
|
];
|
|
hardeningDisable = [
|
|
# causes redefinition of _FORTIFY_SOURCE
|
|
"fortify3"
|
|
];
|
|
# 5 tests out of 23 fail, probably due to the sandbox...
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "https://jcorporation.github.io/myMPD";
|
|
description = "A standalone and mobile friendly web mpd client with a tiny footprint and advanced features";
|
|
maintainers = [ lib.maintainers.doronbehar ];
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "mympd";
|
|
};
|
|
})
|