nixpkgs/pkgs/applications/audio/mpc123/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ fetchurl, lib, stdenv, gettext, libmpcdec, libao }:
let version = "0.2.4"; in
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "mpc123";
inherit version;
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "mirror://sourceforge/mpc123/version%20${version}/${pname}-${version}.tar.gz";
sha256 = "0sf4pns0245009z6mbxpx7kqy4kwl69bc95wz9v23wgappsvxgy1";
};
patches = [ ./use-gcc.patch ];
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: /build/cc566Cj9.o:(.bss+0x0): multiple definition of `mpc123_file_reader'; ao.o:(.bss+0x40): first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
buildInputs = [ gettext libmpcdec libao ];
installPhase =
# XXX: Should install locales too (though there's only 1 available).
'' mkdir -p "$out/bin"
cp -v mpc123 "$out/bin"
'';
meta = {
homepage = "http://mpc123.sourceforge.net/";
description = "A Musepack (.mpc) audio player";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
2013-08-16 21:44:33 +00:00
maintainers = [ ];
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice
};
}