Add helper scripts via Nix
This commit is contained in:
parent
35ae8135a0
commit
127ed335af
17 changed files with 164 additions and 96 deletions
6
dhall/flake.lock
generated
6
dhall/flake.lock
generated
|
@ -17,11 +17,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1659047146,
|
||||
"narHash": "sha256-2qZemVRDR5oCw0Hd32LQSWC7FaEy5sUp5ih9OxqE3yU=",
|
||||
"lastModified": 1659047633,
|
||||
"narHash": "sha256-zeI+NkJOa665fRrKGpjscfy3Hs4K316q1q7394xbRbw=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "68716026a095a765c09ec29f06ba234a0298418c",
|
||||
"rev": "496caa738a16d2bb3607243d9127df718bb50513",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -15,17 +15,19 @@
|
|||
inherit (pkgs.lib) optionals;
|
||||
inherit (pkgs.stdenv) isLinux;
|
||||
|
||||
otherFormats = with pkgs.haskellPackages; [
|
||||
dhall-bash
|
||||
dhall-docs
|
||||
dhall-json
|
||||
dhall-lsp-server
|
||||
dhall-nix
|
||||
dhall-nixpkgs
|
||||
dhall-openapi
|
||||
dhall-toml
|
||||
dhall-yaml
|
||||
] ++ optionals isLinux (with pkgs.haskellPackages; [ dhall-csv dhall-haskell dhall-text ]);
|
||||
otherFormats = with pkgs.haskellPackages;
|
||||
[
|
||||
dhall-bash
|
||||
dhall-docs
|
||||
dhall-json
|
||||
dhall-lsp-server
|
||||
dhall-nix
|
||||
dhall-nixpkgs
|
||||
dhall-openapi
|
||||
dhall-toml
|
||||
dhall-yaml
|
||||
] ++ optionals isLinux
|
||||
(with pkgs.haskellPackages; [ dhall-csv dhall-haskell dhall-text ]);
|
||||
|
||||
inherit (pkgs) mkShell;
|
||||
in {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue