mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Adding mpg123 (it even cross-builds fine for the nanonote)
svn path=/nixpkgs/branches/stdenv-updates/; revision=23313
This commit is contained in:
parent
c68d102286
commit
e0b377fd81
23
pkgs/applications/audio/mpg123/default.nix
Normal file
23
pkgs/applications/audio/mpg123/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{stdenv, fetchurl, alsaLib }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mpg123-1.12.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/mpg123/mpg123-1.12.3.tar.bz2;
|
||||
sha256 = "1ij689s7jch3d4g0ja3jylaphallc8vgrsrm9b12254phnyy23xf";
|
||||
};
|
||||
|
||||
buildInputs = [ 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";
|
||||
};
|
||||
}
|
|
@ -5860,6 +5860,8 @@ let
|
|||
|
||||
mpc123 = callPackage ../applications/audio/mpc123 { };
|
||||
|
||||
mpg123 = callPackage ../applications/audio/mpg123 { };
|
||||
|
||||
mpg321 = callPackage ../applications/audio/mpg321 { };
|
||||
|
||||
MPlayer = callPackage ../applications/video/MPlayer {
|
||||
|
|
Loading…
Reference in a new issue