mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
coloursum: init at 0.1.0
This commit is contained in:
parent
386f516fba
commit
30817f9779
23
pkgs/tools/text/coloursum/default.nix
Normal file
23
pkgs/tools/text/coloursum/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
name = "coloursum-${version}";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ticky";
|
||||
repo = "coloursum";
|
||||
rev = "v${version}";
|
||||
sha256 = "18ikwi0ihn0vadazrkh85jfz8a2f0dkfb3zns5jzh7p7mb0ylrr2";
|
||||
};
|
||||
|
||||
cargoSha256 = "0f73vqa82w4ccr0cc95mxga3r8jgd92jnksshxzaffbpx4s334p3";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Colourise your checksum output";
|
||||
homepage = "https://github.com/ticky/coloursum";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ fgaz ];
|
||||
};
|
||||
}
|
@ -1367,6 +1367,8 @@ in
|
||||
|
||||
colorls = callPackage ../tools/system/colorls { };
|
||||
|
||||
coloursum = callPackage ../tools/text/coloursum { };
|
||||
|
||||
compsize = callPackage ../os-specific/linux/compsize { };
|
||||
|
||||
coturn = callPackage ../servers/coturn { };
|
||||
|
Loading…
Reference in New Issue
Block a user