Merge pull request #483 from vincentbernat/patch-1

README: fix shell example syntax
This commit is contained in:
adisbladis 2022-01-03 14:49:17 +12:00 committed by GitHub
commit 44d84349df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -125,7 +125,7 @@ let
};
};
in myAppEnv.env.overrideAttrs (oldAttrs: {
buildInputs = [ pkgs.hello ]:
buildInputs = [ pkgs.hello ];
})
```