1
0
Fork 0
mirror of https://github.com/justinwoo/easy-dhall-nix.git synced 2025-03-29 17:15:22 +01:00

update tests

This commit is contained in:
justinwoo 2018-12-08 15:07:31 +02:00
parent 0f31af0079
commit bd6baadd52

View file

@ -1,6 +1,12 @@
{ pkgs ? import <nixpkgs> {} }: { pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation { let easy-dhall = import ./default.nix { inherit pkgs; };
in pkgs.stdenv.mkDerivation {
name = "easy-dhall-nix-shell"; name = "easy-dhall-nix-shell";
buildInputs = builtins.attrValues (import ./default.nix { inherit pkgs; }); buildInputs = [
easy-dhall.dhall-simple
easy-dhall.dhall-json-simple
easy-dhall.dhall-bash-simple
easy-dhall.dhall-text-simple
];
} }