Files
himalaya/shell.nix
T
Clément DOUIN 1b70c4e0ea build: fix v1.2.0
2026-02-19 11:05:12 +01:00

17 lines
381 B
Nix

{
nixpkgs ? <nixpkgs>,
system ? builtins.currentSystem,
pkgs ? import nixpkgs { inherit system; },
pimalaya ? import (fetchTarball "https://github.com/pimalaya/nix/archive/master.tar.gz"),
fenix ? import (fetchTarball "https://github.com/nix-community/fenix/archive/monthly.tar.gz") { },
}:
pimalaya.mkShell {
inherit
nixpkgs
system
pkgs
fenix
;
}