From e45674d60abfbc30ec99ac36bee5616fc4afcf4d Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Tue, 21 Jan 2020 17:38:11 +1000 Subject: [PATCH] Added crystal 0.32 --- roles/crystal0.32.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 roles/crystal0.32.nix diff --git a/roles/crystal0.32.nix b/roles/crystal0.32.nix new file mode 100644 index 0000000..5b5c1cd --- /dev/null +++ b/roles/crystal0.32.nix @@ -0,0 +1,12 @@ +# This role utilizes a local version of nixpkgs that bumps Crystal from 0.30.1 +# to 0.32.1 + +{ config, pkgs, lib, ... }: + +{ + + environment.systemPackages = [ (import /home/craige/source/NixOS/nixpkgs {}).crystal ]; + +} + +