forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cmake, libuchardet, pkgconfig, shntool, flac
|
|
, opusTools, vorbis-tools, mp3gain, lame, wavpack, vorbisgain, gtk3, qtbase
|
|
, qttools, wrapQtAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "flacon";
|
|
version = "6.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flacon";
|
|
repo = "flacon";
|
|
rev = "v${version}";
|
|
sha256 = "04yp3aym7h70xjni9ancqv5lc4zds5a8dgw3fzgqs8k5nmh074gv";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
|
|
buildInputs = [ qtbase qttools libuchardet ];
|
|
|
|
bin_path = lib.makeBinPath [
|
|
shntool
|
|
flac
|
|
opusTools
|
|
vorbis-tools
|
|
mp3gain
|
|
lame
|
|
wavpack
|
|
vorbisgain
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/flacon \
|
|
--suffix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}" \
|
|
--prefix PATH : "$bin_path";
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"Extracts audio tracks from an audio CD image to separate tracks";
|
|
homepage = "https://flacon.github.io/";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ snglth ];
|
|
};
|
|
}
|