summary refs log tree commit diff
path: root/pkgs/applications/audio/mpg123/default.nix
blob: 029c2ba4bcdf719d8b3a79b8cc77f9f7238397cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{stdenv, fetchurl, alsaLib }:

stdenv.mkDerivation {
  name = "mpg123-1.15.4";

  src = fetchurl {
    url = mirror://sourceforge/mpg123/mpg123-1.15.4.tar.bz2;
    sha256 = "05aizspky9mp1bq2lfrkjzrsnjykl7gkbrhn93xcarj5b2izv1b8";
  };

  buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;

  crossAttrs = {
    configureFlags = if stdenv.cross ? mpg123 then
      "--with-cpu=${stdenv.cross.mpg123.cpu}" else "";
  };

  meta = {
    description = "Command-line MP3 player";
    homepage = http://mpg123.sourceforge.net/;
    license = "LGPL";
  };
}