mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-23 11:39:42 +01:00
update README
This commit is contained in:
parent
87406a7640
commit
e8559110ff
1 changed files with 16 additions and 1 deletions
17
README.md
17
README.md
|
@ -14,7 +14,22 @@ nix-shell -A shell
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
You might choose to simply copy the derivations from this repository, or you can fetch the git/Github repo using the various helpers.
|
You might choose to simply copy the derivations from this repository, or you can fetch the git/Github repo using the various helpers:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
> nix repl
|
||||||
|
nix-repl> pkgs = import <nixpkgs> {}
|
||||||
|
|
||||||
|
nix-repl> drvs = import (pkgs.fetchFromGitHub {
|
||||||
|
owner = "justinwoo";
|
||||||
|
repo = "easy-dhall-nix";
|
||||||
|
rev = "87406a76409c16bbd7511e397cfc52e1c58954e3";
|
||||||
|
sha256 = "1sjpckyhvlks5yls0qqfd0iaf7pxp1sp3dikqh41lg6xsxx6lqhi";
|
||||||
|
}) {}
|
||||||
|
|
||||||
|
nix-repl> drvs.dhall-simple
|
||||||
|
«derivation /nix/store/qz29jbplpmlvsbmq05084dh1fbs8sl0h-dhall-simple.drv»
|
||||||
|
```
|
||||||
|
|
||||||
## NixOS: Contributors needed
|
## NixOS: Contributors needed
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue