easy-dhall-nix/shell.nix

7 lines
173 B
Nix
Raw Normal View History

2018-12-08 13:57:01 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
name = "easy-dhall-nix-shell";
buildInputs = builtins.attrValues (import ./default.nix { inherit pkgs; });
}