stockholm/makefu/2configs/nur.nix

12 lines
324 B
Nix
Raw Normal View History

2018-08-06 14:28:17 +00:00
{ pkgs, ... }:{
nixpkgs.config.packageOverrides = pkgs: {
2020-03-13 09:46:05 +00:00
nur = import (builtins.fetchTarball {
2020-04-21 19:41:07 +00:00
url = "https://github.com/nix-community/NUR/archive/b7f7e072b3fa56aa0d86dfe3689cb13f0615bbbe.tar.gz";
sha256 = "0slxxg3r460aa1rc83j0rklmr0i1hyzfbjy0kn30fyh1l3lqb22m";
2020-03-13 09:46:05 +00:00
}
){
inherit pkgs;
};
2018-08-06 14:28:17 +00:00
};
}