nixpkgs/pkgs/by-name/ra/ratman/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

94 lines
2.2 KiB
Nix

{ lib
, fetchFromGitLab
, installShellFiles
, libsodium
, pkg-config
, protobuf
, rustPlatform
, fetchYarnDeps
, fixup-yarn-lock
, stdenv
, yarn
, nodejs
}:
rustPlatform.buildRustPackage rec {
pname = "ratman";
version = "0.4.0";
src = fetchFromGitLab {
domain = "git.irde.st";
owner = "we";
repo = "irdest";
rev = "${pname}-${version}";
sha256 = "sha256-ZZ7idZ67xvQFmQJqIFU/l77YU+yDQOqNthX5NR/l4k8=";
};
cargoHash = "sha256-Nsux0QblBtzlhLEgfKYvkQrOz8+oVd2pqT3CL8TnQEc=";
nativeBuildInputs = [ protobuf pkg-config installShellFiles ];
cargoBuildFlags = [ "--all-features" "-p" "ratman" ];
cargoTestFlags = cargoBuildFlags;
buildInputs = [ libsodium ];
postInstall = ''
installManPage docs/man/ratmand.1
'';
SODIUM_USE_PKG_CONFIG = 1;
dashboard = stdenv.mkDerivation rec {
pname = "ratman-dashboard";
inherit version src;
sourceRoot = "${src.name}/ratman/dashboard";
yarnDeps = fetchYarnDeps {
yarnLock = src + "/ratman/dashboard/yarn.lock";
sha256 = "sha256-pWjKL41r/bTvWv+5qCgCFVL9+o64BiV2/ISdLeKEOqE=";
};
nativeBuildInputs = [ yarn nodejs fixup-yarn-lock ];
outputs = [ "out" "dist" ];
buildPhase = ''
# Yarn writes temporary files to $HOME. Copied from mkYarnModules.
export HOME=$NIX_BUILD_TOP/yarn_home
# Make yarn install packages from our offline cache, not the registry
yarn config --offline set yarn-offline-mirror ${yarnDeps}
# Fixup "resolved"-entries in yarn.lock to match our offline cache
fixup-yarn-lock yarn.lock
yarn install --offline --frozen-lockfile --ignore-scripts --no-progress --non-interactive
patchShebangs node_modules/
# Build into `./dist/`, suppress formatting.
yarn --offline build | cat
'';
installPhase = ''
cp -R . $out
mv $out/dist $dist
ln -s $dist $out/dist
'';
};
prePatch = ''
cp -r ${dashboard.dist} ratman/dashboard/dist
'';
meta = with lib; {
description = "Modular decentralised peer-to-peer packet router and associated tools";
homepage = "https://git.irde.st/we/irdest";
platforms = platforms.unix;
license = licenses.agpl3Only;
maintainers = with maintainers; [ spacekookie ];
};
}