This commit is contained in:
Amy de Buitléir 2025-10-08 17:56:56 +01:00
parent 253d47391a
commit da2b37d49d
7 changed files with 142 additions and 97891 deletions

5633
index.html

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
= Build/runtime environments
include::nixpkg/main.adoc[leveloffset=+1]
include::nixpkg/main-generated.adoc[leveloffset=+1]
include::flake/main-generated.adoc[leveloffset=+1]

View file

@ -1,3 +0,0 @@
= Access a top level package from the Nixpkgs/NixOS repo
See <<_introducing_a_dependency>>.

View file

@ -0,0 +1,37 @@
= Access a top level package from the Nixpkgs/NixOS repo
In <<_introducing_a_dependency>>, we wrote a shell script that needed
access to the Linux `cowsay` command.
To accomplish this, we added a step to the `installPhase` that
modified that script by including the full path to `cowsay`.
Let's see a different approach.
This time we won't start with an existing script;
we'll create it during installation.
////
$ mkdir tempwork
$ cd tempwork
$ cp ../flake.nix .
$ git add flake.nix
$ nix build
$ git add flake.lock
$ git commit -a -m temp
////
[source,nix,linenums,highlight='37..39,42']
.flake.nix
....
$# cat flake.nix
....
Here's the flake in action.
....
$ nix run
....
////
Good adoc0 scripts clean up after themselves.
$ cd .. ; rm -rf tempwork # clean up
////

View file

@ -0,0 +1,77 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"hello-nix": {
"flake": false,
"locked": {
"lastModified": 1757705465,
"narHash": "sha256-sJCQ9+8Dy+QF9ISaupp42+mGbuXtFyqbX85tWzeNPOI=",
"ref": "refs/heads/main",
"rev": "56044f61231c996e4ab795de1da89e5f79db3f4f",
"revCount": 5,
"type": "git",
"url": "https://codeberg.org/mhwombat/hello-nix"
},
"original": {
"type": "git",
"url": "https://codeberg.org/mhwombat/hello-nix"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1759940130,
"narHash": "sha256-Mh7OwdNa3wtyEvPfKui/+Wu1wsjFaagcgk5b5cWAHQw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "69cb92cdb8da8825ade450fe099028e3a3a278fd",
"type": "github"
},
"original": {
"owner": "NixOS",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"hello-nix": "hello-nix",
"nixpkgs": "nixpkgs"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

View file

@ -0,0 +1,27 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
hello-nix = {
url = "git+https://codeberg.org/mhwombat/hello-nix";
flake = false;
};
};
outputs = { self, nixpkgs, flake-utils, hello-nix }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
helloNix = import hello-nix { inherit pkgs; };
in
{
devShells = rec {
default = pkgs.mkShell {
packages = [ helloNix ];
};
};
}
);
}

File diff suppressed because it is too large Load diff