From eab11cd255e717c36f679b002e2f1fe58a3f7c46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Mon, 12 Jan 2026 17:08:17 +0100 Subject: [PATCH] build(nix): fix ci build --- default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/default.nix b/default.nix index c98752f0..6f6b1e7f 100644 --- a/default.nix +++ b/default.nix @@ -1,5 +1,6 @@ { pimalaya ? import (fetchTarball "https://github.com/pimalaya/nix/archive/master.tar.gz"), + nixpkgs ? , ... }@args: @@ -11,16 +12,17 @@ pimalaya.mkDefault ( { lib, pkgs, + rustPlatform, defaultFeatures, features, - ... }: - pkgs.himalaya.overrideAttrs (_: { + pkgs.callPackage "${nixpkgs}/pkgs/by-name/hi/himalaya/package.nix" { + inherit lib rustPlatform; installShellCompletions = false; installManPages = false; buildNoDefaultFeatures = !defaultFeatures; buildFeatures = lib.splitString "," features; - }) + } ); } // removeAttrs args [ "pimalaya" ]