clolcat: init at 1.1

This commit is contained in:
Felipe Silva 2023-03-19 12:02:36 -03:00
parent b38db2c901
commit cb558fa1e9
No known key found for this signature in database
GPG key ID: DFCE681E1B7974D8
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv
, fetchFromGitHub
, lib
}:
stdenv.mkDerivation rec {
pname = "clolcat";
version = "1.1";
src = fetchFromGitHub {
owner = "IchMageBaume";
repo = "clolcat";
rev = version;
sha256 = "sha256-fLa239dwEXe4Jyy5ntgfU9V0h5wrBsvq6/s2HCis7Sc=";
};
preInstall = "mkdir -p $out/bin";
makeFlags = [ "DESTDIR=$(out)/bin" ];
meta = with lib; {
description = "Much faster lolcat";
homepage = "https://github.com/IchMageBaume/clolcat";
platforms = platforms.all;
maintainers = [ maintainers.felipeqq2 ];
license = licenses.wtfpl;
};
}

View file

@ -6327,6 +6327,8 @@ with pkgs;
cloc = callPackage ../tools/misc/cloc { };
clolcat = callPackage ../tools/misc/clolcat { };
cloog = callPackage ../development/libraries/cloog {
isl = isl_0_14;
};