easy-dhall-nix/shell.nix

17 lines
282 B
Nix
Raw Normal View History

2018-12-08 13:57:01 +01:00
{ pkgs ? import <nixpkgs> {} }:
2019-07-29 22:32:04 +02:00
let
easy-dhall = import ./default.nix {
inherit pkgs;
};
2018-12-08 14:07:31 +01:00
in pkgs.stdenv.mkDerivation {
2018-12-08 13:57:01 +01:00
name = "easy-dhall-nix-shell";
2019-07-29 22:32:04 +02:00
2018-12-08 14:07:31 +01:00
buildInputs = [
easy-dhall.dhall-simple
easy-dhall.dhall-json-simple
easy-dhall.dhall-bash-simple
];
2018-12-08 13:57:01 +01:00
}