1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00

Merge pull request #103 from sbellem/fetchTarball-remove-semi-colon

Remove semi-colon from fetchTarball example
This commit is contained in:
Domen Kožar 2020-10-02 13:48:44 +03:00 committed by GitHub
commit 0e1ed15d99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ The simplest way to do this is to fetch the required nixpkgs version as a tarbal
.. code:: nix
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/3590f02e7d5760e52072c1a729ee2250b5560746.tar.gz") {};
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/3590f02e7d5760e52072c1a729ee2250b5560746.tar.gz") {}
}:
...