mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
rawst: init at 0.8.1
This commit is contained in:
parent
2e5a31188a
commit
dee9dea59a
1 changed files with 34 additions and 0 deletions
34
pkgs/by-name/ra/rawst/package.nix
Normal file
34
pkgs/by-name/ra/rawst/package.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
__structuredAttrs = true;
|
||||
|
||||
pname = "rawst";
|
||||
version = "0.8.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Jupiee";
|
||||
repo = "rawst";
|
||||
tag = "${finalAttrs.version}";
|
||||
hash = "sha256-+uhE80XoZyMBV+nmlP+C5DfoB+z4tyK69XGsuALxROs=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-wS1dR6r3/4sg4DCMR8QZjbHgiSEhuu/v4MqJ6LxEKtY=";
|
||||
env.RUSTC_BOOTSTRAP = true;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Cli downloader, written in rust";
|
||||
homepage = "https://github.com/Jupiee/rawst";
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ Inarizxc ];
|
||||
platforms = lib.platforms.linux;
|
||||
mainProgram = "rawst";
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue