pkgs: add cross-seed

This commit is contained in:
NullBite 2025-01-15 16:06:27 -05:00
parent 99fae72379
commit 150a26cc7d
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "cross-seed";
version = "6.8.7";
src = fetchFromGitHub {
owner = "cross-seed";
repo = "cross-seed";
rev = "v${version}";
hash = "sha256-01F20L/D6aAzVmQxEHdlRNm/qsucr5B4LvvHukeRw/w=";
};
npmDepsHash = "sha256-UsWc1SShDHeBoSfF+MI0Mw639YncQe7ZFAFZlT0Gfgk=";
}

View File

@ -13,4 +13,5 @@ in
atool = callPackage ./atool-wrapped { };
nixfiles-assets = callPackage ./nixfiles-assets { };
redlib = callPackage ./redlib { };
cross-seed = callPackage ./cross-seed { };
}

View File

@ -23,4 +23,5 @@ cd "$(dirname "$0")"
if [[ -n "${DO_PACKAGES:+x}" ]] ; then
nix-update --flake redlib --version=branch=main
nix-update --flake cross-seed
fi