modifia shenv de altera. ahora tiene nightmode

This commit is contained in:
Fabián Montero 2022-08-31 02:28:43 -06:00
parent 65ff9d2d0d
commit b13370a26e

View file

@ -1,13 +1,23 @@
{ lib, pkgs, ... }:
with lib; {
static = true;
namespaced = true;
packages = with pkgs; [
(quartus-prime-lite.override { supportedDevices = [ "Cyclone V" ]; })
binutils
gcc
gnumake
gtkwave
verilator
];
hm = {
# QGtkStyle could not resolve GTK. Make sure you have installed the proper libraries.
home.sessionVariables.LD_LIBRARY_PATH = "${pkgs.gtk2}/lib";
# Evita GC
hm.xdg.configFile."quartus-inputs".text = let
xdg.configFile."quartus-inputs".text = let
inherit (pkgs) requireFile;
homepage = "https://fpgasoftware.intel.com";
version = "20.1.1.720";
@ -33,4 +43,5 @@ with lib; {
})
];
in concatStringsSep "\n" inputs;
};
}