mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-26 21:19:42 +01:00
6 lines
173 B
Nix
6 lines
173 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "easy-dhall-nix-shell";
|
|
buildInputs = builtins.attrValues (import ./default.nix { inherit pkgs; });
|
|
}
|