Merge pull request #65973 from fgaz/coloursum/init

coloursum: init at 0.1.0
This commit is contained in:
Marek Mahut 2019-08-09 10:22:43 +02:00 committed by GitHub
commit 9ce3f57716
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View file

@ -1376,6 +1376,8 @@ in
colorls = callPackage ../tools/system/colorls { };
coloursum = callPackage ../tools/text/coloursum { };
compsize = callPackage ../os-specific/linux/compsize { };
coturn = callPackage ../servers/coturn { };