mirror of
https://codeberg.org/mhwombat/nix-book.git
synced 2025-12-27 00:34:58 +08:00
10 lines
350 B
Nix
10 lines
350 B
Nix
with (import <nixpkgs> {});
|
|
let
|
|
hello-nix = import (builtins.fetchGit {
|
|
url = "https://codeberg.org/mhwombat/hello-nix";
|
|
rev = "aa2c87f8b89578b069b09fdb2be30a0c9d8a77d8";
|
|
});
|
|
in
|
|
mkShell {
|
|
buildInputs = [ hello-nix ];
|
|
}
|