mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
We can remove duplicate entries and redirect to the nixpkgs entry. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
|
|
cfg = config.programs.timidity;
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.amesgen ];
|
|
|
|
options.programs.timidity = {
|
|
enable = lib.mkEnableOption "timidity, a software MIDI renderer";
|
|
|
|
package = lib.mkPackageOption pkgs "timidity" { };
|
|
|
|
finalPackage = lib.mkOption {
|
|
readOnly = true;
|
|
type = lib.types.package;
|
|
description = "Resulting package.";
|
|
};
|
|
|
|
extraConfig = lib.mkOption {
|
|
type = lib.types.lines;
|
|
default = "";
|
|
example = lib.literalExpression ''
|
|
'''
|
|
soundfont ''${pkgs.soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2
|
|
'''
|
|
'';
|
|
description = "Extra configuration.";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = [ cfg.finalPackage ];
|
|
|
|
programs.timidity.finalPackage = pkgs.symlinkJoin {
|
|
name = "timidity-with-config";
|
|
paths = [ cfg.package ];
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
postBuild = ''
|
|
wrapProgram $out/bin/timidity \
|
|
--add-flags '-c ${pkgs.writeText "timidity.cfg" cfg.extraConfig}'
|
|
'';
|
|
};
|
|
};
|
|
}
|