From 2674db895a46f0716e06915b82a8268612240801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Montero?= Date: Mon, 15 Aug 2022 23:59:07 -0600 Subject: [PATCH] =?UTF-8?q?a=C3=B1ade=20shenv=20de=20quartus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shenvs/config.nix | 1 + shenvs/quartus.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 shenvs/quartus.nix diff --git a/shenvs/config.nix b/shenvs/config.nix index d2870f4..e90b116 100644 --- a/shenvs/config.nix +++ b/shenvs/config.nix @@ -4,6 +4,7 @@ shenvs: { mad octave proba + quartus tcrb ]; } diff --git a/shenvs/quartus.nix b/shenvs/quartus.nix new file mode 100644 index 0000000..3742d64 --- /dev/null +++ b/shenvs/quartus.nix @@ -0,0 +1,7 @@ +pkgs: { + paths = with pkgs; [ + (pkgs.quartus-prime-lite.override { + supportedDevices = pkgs.lib.singleton "Cyclone V"; + }) + ]; +}