Unverified Commit cb558fa1 authored by Felipe Silva's avatar Felipe Silva
Browse files

clolcat: init at 1.1

parent b38db2c9
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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;
  };