diff options
author | EuAndreh <eu@euandre.org> | 2018-08-26 08:08:25 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-08-26 08:08:25 -0300 |
commit | ec4504ff9773bf8a7d222e7359fa085baf4214ae (patch) | |
tree | 92cf11111fbaef82b4d7e7e997c117a4d53bdf94 | |
parent | Add extra xdg-mime handlers for audio file formats. (diff) | |
download | dotfiles-ec4504ff9773bf8a7d222e7359fa085baf4214ae.tar.gz dotfiles-ec4504ff9773bf8a7d222e7359fa085baf4214ae.tar.xz |
Use custom version of timidity.
-rw-r--r-- | nixos/configuration.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 3ff3d6d..41f72ba 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -65,8 +65,14 @@ freefont_ttf ]; + environment.systemPackages = - let pkgsUnstable = import(fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {}; + let + pkgsUnstable = import(fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {}; + timidityWithEvenMoreFormats = with pkgs; timidity.overrideAttrs (oldAttrs: { + configureFlags = oldAttrs.configureFlags ++ [ "--enable-audio=vorbis,flac" ]; + buildInputs = oldAttrs.buildInputs ++ [ libogg libvorbis flac ]; + }); in with pkgs; [ ## Personal data tools @@ -152,7 +158,6 @@ gitlab-runner sshpass zathura # for viewing Emacs PDF files - timidity notmuch isync cacert @@ -183,6 +188,7 @@ texlive.combined.scheme-full lilypond frescobaldi + timidityWithEvenMoreFormats ## Programming tools |