mirror of
https://gitlab.com/khumba/nvd.git
synced 2024-11-13 00:19:28 +01:00
Warn users who pull from git master about the upcoming sr.ht migration.
This commit is contained in:
parent
f72ab902f7
commit
22eb1cb5da
1 changed files with 16 additions and 1 deletions
17
default.nix
17
default.nix
|
@ -1,7 +1,21 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
{ pkgs ? import <nixpkgs> {}
|
||||
, silenceWarning ? false
|
||||
}:
|
||||
let
|
||||
inherit (pkgs) lib nix-gitignore python3 stdenv;
|
||||
|
||||
warning =
|
||||
"This is a development build of nvd from git master.\n"
|
||||
+ "On or around Oct 19, 2024, nvd will be moving to Sourcehut.\n"
|
||||
+ "Please consider using the latest stable nvd release from nixpkgs,\n"
|
||||
+ "but if you wish to continue pulling the latest unstable pre-release\n"
|
||||
+ "code, you will need to update your URLs (and can do so now).\n"
|
||||
+ "See the following link for more info, thanks.\n\n"
|
||||
+ "https://gitlab.com/khumba/nvd/-/issues/19";
|
||||
|
||||
warn = if silenceWarning then lib.id else lib.warn warning;
|
||||
in
|
||||
warn (
|
||||
stdenv.mkDerivation {
|
||||
pname = "nvd";
|
||||
version = "0.2.4";
|
||||
|
@ -31,3 +45,4 @@ stdenv.mkDerivation {
|
|||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue