mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-23 03:29:42 +01:00
update tests
This commit is contained in:
parent
0f31af0079
commit
bd6baadd52
1 changed files with 8 additions and 2 deletions
10
shell.nix
10
shell.nix
|
@ -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
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue