
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
31 lines
808 B
Nix
31 lines
808 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, wireguard-tools
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "wg-friendly-peer-names";
|
|
version = "unstable-2021-12-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FlyveHest";
|
|
repo = "wg-friendly-peer-names";
|
|
rev = "b0c3e1a95c843dc9c6432895105b839ef9b362fc";
|
|
hash = "sha256-aGxrABmR+aQO35RYo/zI2037clnGOW0Tr16p7M1fQqc=";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -D wgg.sh $out/bin/wgg
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/FlyveHest/wg-friendly-peer-names";
|
|
description = "Small shellscript that makes it possible to give peers a friendlier and more readable name in the `wg` peer list";
|
|
license = licenses.mit;
|
|
platforms = wireguard-tools.meta.platforms;
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
mainProgram = "wgg";
|
|
};
|
|
}
|