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

fix syntax error (#972)

Update packaging-existing-software.md - fix syntax error in skeleton derivation example
This commit is contained in:
Domagoj Mišković 2024-04-25 01:01:54 +02:00 committed by GitHub
parent 6fe9e53ccd
commit ec43f3a524
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,7 +52,7 @@ To start, consider this skeleton derivation:
```nix
{ stdenv }:
stdenv.mkDerivation { };
stdenv.mkDerivation { }
```
This is a function which takes an attribute set containing `stdenv`, and produces a derivation (which currently does nothing).