Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
872 B
Nix
36 lines
872 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
openssl,
|
|
unstableGitUpdater,
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "cloneit";
|
|
version = "1.0.0-unstable-2025-07-22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alok8bb";
|
|
repo = "cloneit";
|
|
rev = "58e9213ba5af457e76a7ea55696eb77f6d0d9025";
|
|
sha256 = "sha256-rvhUArJR8ipMRIWpzUY9NUBwqj9TWjX6qtBJp/v3p+Q=";
|
|
};
|
|
|
|
cargoHash = "sha256-ZcowTGIl6RiP6qpP5LqgePCgII+qgEcebe5pq4ubv6o=";
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ openssl ];
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = {
|
|
description = "CLI tool to download specific GitHub directories or files";
|
|
homepage = "https://github.com/alok8bb/cloneit";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ NotAShelf ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|