mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
rnix-hashes: init at 0.2.0 (#93778)
This commit is contained in:
parent
d6e909342f
commit
f4997efd5c
@ -6856,6 +6856,12 @@
|
||||
githubId = 2507744;
|
||||
name = "Roland Koebler";
|
||||
};
|
||||
rizary = {
|
||||
email = "andika@numtide.com";
|
||||
github = "Rizary";
|
||||
githubId = 7221768;
|
||||
name = "Andika Demas Riyandi";
|
||||
};
|
||||
rkrzr = {
|
||||
email = "ops+nixpkgs@channable.com";
|
||||
github = "rkrzr";
|
||||
|
21
pkgs/tools/nix/rnix-hashes/default.nix
Normal file
21
pkgs/tools/nix/rnix-hashes/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub, fetchpatch }:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rnix-hashes";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "numtide";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "SzHyG5cEjaaPjTkn8puht6snjHMl8DtorOGDjxakJfA=";
|
||||
};
|
||||
|
||||
cargoSha256 = "vaG+0t+XAckV9F4iIgcTkbIUurxdQsTCfOnRnrOKoRc=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Nix Hash Converter";
|
||||
homepage = "https://github.com/numtide/rnix-hashes";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ rizary ];
|
||||
};
|
||||
}
|
@ -26402,6 +26402,8 @@ in
|
||||
|
||||
nixpkgs-fmt = callPackage ../tools/nix/nixpkgs-fmt { };
|
||||
|
||||
rnix-hashes = callPackage ../tools/nix/rnix-hashes { };
|
||||
|
||||
nixos-artwork = callPackage ../data/misc/nixos-artwork { };
|
||||
nixos-icons = callPackage ../data/misc/nixos-artwork/icons.nix { };
|
||||
nixos-grub2-theme = callPackage ../data/misc/nixos-artwork/grub2-theme.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user