1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01: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:
Robert Helgesson 2024-01-18 23:05:35 +01:00
parent b84191db12
commit d6185e83d8
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED
2 changed files with 10 additions and 2 deletions

View file

@ -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;