Skip to content

Commit

Permalink
docs(nix): fix incorrect code sample
Browse files Browse the repository at this point in the history
  • Loading branch information
Dich0tomy committed May 25, 2024
1 parent a9e734d commit 47dbda1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 64,14 @@ Fetch the source and use it, e.g. in your shell:
let
pkgs = import <nixpkgs> {};
sig = import (fetchFromGitHub {
sig = pkgs.callPackage (pkgs.fetchFromGitHub {
owner = "ynqa";
repo = "sig";
rev = "v0.1.0";
hash = "sha256-KHXBeQFmuA3YO9AN5dkY/fl/z2RdbR6AqSSEGUNrxt4=";
});
}) {};
in
mkShell {
pkgs.mkShell {
packages = [sig];
}
```
Expand Down

0 comments on commit 47dbda1

Please sign in to comment.