mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
622 B
Nix
22 lines
622 B
Nix
{ stdenv, fetchurl, autoreconfHook, flac, libao, libogg, popt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "flac123";
|
|
version = "0.0.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/flac-tools/${pname}-${version}-release.tar.gz";
|
|
sha256 = "0zg4ahkg7v81za518x32wldf42g0rrvlrcqhrg9sv3li9bayyxhr";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ flac libao libogg popt ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://flac-tools.sourceforge.net/";
|
|
description = "A command-line program for playing FLAC audio files";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|