modifia shenv de altera. ahora tiene nightmode
This commit is contained in:
parent
65ff9d2d0d
commit
b13370a26e
|
@ -1,13 +1,23 @@
|
||||||
{ lib, pkgs, ... }:
|
{ lib, pkgs, ... }:
|
||||||
with lib; {
|
with lib; {
|
||||||
|
static = true;
|
||||||
namespaced = true;
|
namespaced = true;
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
(quartus-prime-lite.override { supportedDevices = [ "Cyclone V" ]; })
|
(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
|
# Evita GC
|
||||||
hm.xdg.configFile."quartus-inputs".text = let
|
xdg.configFile."quartus-inputs".text = let
|
||||||
inherit (pkgs) requireFile;
|
inherit (pkgs) requireFile;
|
||||||
homepage = "https://fpgasoftware.intel.com";
|
homepage = "https://fpgasoftware.intel.com";
|
||||||
version = "20.1.1.720";
|
version = "20.1.1.720";
|
||||||
|
@ -33,4 +43,5 @@ with lib; {
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
in concatStringsSep "\n" inputs;
|
in concatStringsSep "\n" inputs;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue