mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2024-11-02 03:21:15 +00:00
33 lines
679 B
Nix
33 lines
679 B
Nix
|
{
|
||
|
lib,
|
||
|
rustPlatform,
|
||
|
fetchFromGitHub,
|
||
|
pkg-config,
|
||
|
openssl,
|
||
|
...
|
||
|
}:
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "cloneit";
|
||
|
version = "0.1.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "alok8bb";
|
||
|
repo = "cloneit";
|
||
|
rev = version;
|
||
|
sha256 = "CyR/vdg6xqlxmv8jOXka3JIBhi8zafHiBOL67XLf5KM=";
|
||
|
};
|
||
|
|
||
|
cargoSha256 = "zhsFIU7gmP4gR5NhrFslFSvYIXH1fxJLZU8nV67PluQ=";
|
||
|
|
||
|
nativeBuildInputs = [pkg-config];
|
||
|
|
||
|
buildInputs = [openssl];
|
||
|
|
||
|
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];
|
||
|
};
|
||
|
}
|