mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
3c574a458a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/asunder/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 2.9.3 with grep in /nix/store/maiwh6l7wa8gyjhx1zlg8l8xwrczszr7-asunder-2.9.3 - directory tree listing: https://gist.github.com/5cfcd566e15079a73ab786533722d002
53 lines
1.6 KiB
Nix
53 lines
1.6 KiB
Nix
{ stdenv, fetchurl, makeWrapper, gtk2, libcddb, intltool, pkgconfig, cdparanoia
|
|
, mp3Support ? false, lame
|
|
, oggSupport ? true, vorbis-tools
|
|
, flacSupport ? true, flac
|
|
, opusSupport ? false, opusTools
|
|
, wavpackSupport ? false, wavpack
|
|
#, musepackSupport ? false, TODO: mpcenc
|
|
, monkeysAudioSupport ? false, monkeysAudio
|
|
#, aacSupport ? false, TODO: neroAacEnc
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.9.3";
|
|
name = "asunder-${version}";
|
|
src = fetchurl {
|
|
url = "http://littlesvr.ca/asunder/releases/${name}.tar.bz2";
|
|
sha256 = "1630i1df06y840v3fgdf75jxw1s8kwbfn5bhi0686viah0scccw5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk2 libcddb intltool makeWrapper ];
|
|
|
|
runtimeDeps =
|
|
optional mp3Support lame ++
|
|
optional oggSupport vorbis-tools ++
|
|
optional flacSupport flac ++
|
|
optional opusSupport opusTools ++
|
|
optional wavpackSupport wavpack ++
|
|
optional monkeysAudioSupport monkeysAudio ++
|
|
[ cdparanoia ];
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/asunder" \
|
|
--prefix PATH : "${makeBinPath runtimeDeps}"
|
|
'';
|
|
|
|
meta = {
|
|
description = "A graphical Audio CD ripper and encoder for Linux";
|
|
homepage = http://littlesvr.ca/asunder/index.php;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ mudri ];
|
|
platforms = platforms.linux;
|
|
|
|
longDescription = ''
|
|
Asunder is a graphical Audio CD ripper and encoder for Linux. You can use
|
|
it to save tracks from an Audio CD as any of WAV, MP3, OGG, FLAC, Opus,
|
|
WavPack, Musepack, AAC, and Monkey's Audio files.
|
|
'';
|
|
};
|
|
}
|