mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
docs, tests: revert to fetchTarball for nmd and nmt
Turns out pulling nmt and nmd from Nixpkgs causes an IFD, even when the packages are fixed-output derivations. Thus, since Sourcehut is up and well, we can revert to simply fetching nmd and nmt directly. See discussion in <https://github.com/nix-community/home-manager/pull/4884>.
This commit is contained in:
parent
b84191db12
commit
d6185e83d8
2 changed files with 10 additions and 2 deletions
|
@ -7,7 +7,10 @@
|
|||
|
||||
let
|
||||
|
||||
nmdSrc = pkgs.nix-lib-nmd;
|
||||
nmdSrc = fetchTarball {
|
||||
url = "https://git.sr.ht/~rycee/nmd/archive/v0.5.0.tar.gz";
|
||||
sha256 = "0hnd86jd19zb5j3hmpwmdmdiasg65lgahqv7n8frl9p1vdqz6z67";
|
||||
};
|
||||
|
||||
nmd = import nmdSrc {
|
||||
inherit lib;
|
||||
|
|
|
@ -4,6 +4,11 @@ let
|
|||
|
||||
lib = import ../modules/lib/stdlib-extended.nix pkgs.lib;
|
||||
|
||||
nmtSrc = fetchTarball {
|
||||
url = "https://git.sr.ht/~rycee/nmt/archive/v0.5.1.tar.gz";
|
||||
sha256 = "0qhn7nnwdwzh910ss78ga2d00v42b0lspfd7ybl61mpfgz3lmdcj";
|
||||
};
|
||||
|
||||
modules = import ../modules/modules.nix {
|
||||
inherit lib pkgs;
|
||||
check = false;
|
||||
|
@ -33,7 +38,7 @@ let
|
|||
isDarwin = pkgs.stdenv.hostPlatform.isDarwin;
|
||||
isLinux = pkgs.stdenv.hostPlatform.isLinux;
|
||||
|
||||
in import pkgs.nix-lib-nmt {
|
||||
in import nmtSrc {
|
||||
inherit lib pkgs modules;
|
||||
testedAttrPath = [ "home" "activationPackage" ];
|
||||
tests = builtins.foldl' (a: b: a // (import b)) { } ([
|
||||
|
|
Loading…
Reference in a new issue