aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 1 insertions, 11 deletions
diff --git a/README.md b/README.md
index b47a4bc..ec8e333 100644
--- a/README.md
+++ b/README.md
@@ -12,14 +12,4 @@ Main job of those derivations is to use patchelf to make it nix compliant.
12 12
13## How to use it 13## How to use it
14 14
15```nix 15[See the example.nix](https://github.com/fretlink/clever-tools-nix/blob/master/example.nix)
16{ pkgs ? import <nixpkgs> {} }: with pkgs;
17
18let clever-tools = fetchFromGitHub {
19 owner = "fretlink";
20 repo = "clever-tools-nix";
21 rev = "DESIRED_REVISION_HASH";
22 sha256 = "CONTENT_HASH";
23 };
24in (import clever-tools {}).latest # select appropriate version
25```