Skip to content

Commit

Permalink
Remove extra spaces from installation instructions
Browse files Browse the repository at this point in the history
Merge pull request #36 from socherbyc/update-instructions
  • Loading branch information
lazamar authored Sep 19, 2023
2 parents 4eb016a + 8091f53 commit fb39c03
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -297,12 +297,12 @@ pageHome database request = do
nixCodeBlock $ Text.unlines
[ "let"
, " pkgs = import (builtins.fetchGit {"
, " # Descriptive name to make the store path easier to identify "
, " name = \"my-old-revision\"; "
, " url = \"https://github.com/NixOS/nixpkgs/\"; "
, " ref = \"refs/heads/" <> toChannelBranch channel <> "\"; "
, " rev = \""<> fromHash hash <> "\"; "
, " }) {}; "
, " # Descriptive name to make the store path easier to identify"
, " name = \"my-old-revision\";"
, " url = \"https://github.com/NixOS/nixpkgs/\";"
, " ref = \"refs/heads/" <> toChannelBranch channel <> "\";"
, " rev = \""<> fromHash hash <> "\";"
, " }) {};"
, ""
, " myPkg = pkgs." <> keyName <> ";"
, "in"
Expand Down

0 comments on commit fb39c03

Please sign in to comment.