1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-18 03:50:12 -04:00

Merge pull request #235 from noamraph/patch-1

07-working-derivation.md: use `derivation` instead of `mkDerivation`
This commit is contained in:
John Ericson 2024-04-09 16:09:18 -04:00 committed by GitHub
commit 3febfc1330
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -189,7 +189,7 @@ Drop out of nix repl and write a file `simple.nix`:
let
pkgs = import <nixpkgs> { };
in
pkgs.stdenv.mkDerivation {
derivation {
name = "simple";
builder = "${pkgs.bash}/bin/bash";
args = [ ./simple_builder.sh ];
@ -222,7 +222,7 @@ Below is a revised version of the `simple.nix` file, using the `inherit` keyword
let
pkgs = import <nixpkgs> { };
in
pkgs.stdenv.mkDerivation {
derivation {
name = "simple";
builder = "${pkgs.bash}/bin/bash";
args = [ ./simple_builder.sh ];