Merge pull request #89137 from bhipple/fix/colormake

colormake: use fetchFromGitHub
This commit is contained in:
Florian Klink 2020-05-31 16:12:49 +02:00 committed by GitHub
commit 98ed9c35c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{stdenv, fetchgit, perl}:
{ stdenv, fetchFromGitHub, perl }:
stdenv.mkDerivation {
pname = "colormake";
@ -6,8 +6,9 @@ stdenv.mkDerivation {
buildInputs = [ perl ];
src = fetchgit {
url = "https://github.com/pagekite/Colormake.git";
src = fetchFromGitHub {
owner = "pagekite";
repo = "Colormake";
rev = "66544f40d";
sha256 = "8e714c5540305d169989d9387dbac47b8b9fb2cfb424af7bcd412bfe684dc6d7";
};
@ -17,9 +18,11 @@ stdenv.mkDerivation {
cp -fa colormake.pl colormake colormake-short clmake clmake-short $out/bin
'';
meta = {
meta = with stdenv.lib; {
description = "Simple wrapper around make to colorize the output";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
homepage = "https://bre.klaki.net/programs/colormake/";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ bhipple ];
};
}