biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / pridecat / default.nix
blob4d4ed57fc23525b384fb549723d3c9413979c768
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "pridecat";
5   version = "unstable-2020-06-19";
7   src = fetchFromGitHub {
8     owner = "lunasorcery";
9     repo = "pridecat";
10     rev = "92396b11459e7a4b5e8ff511e99d18d7a1589c96";
11     sha256 = "sha256-PyGLbbsh9lFXhzB1Xn8VQ9zilivycGFEIc7i8KXOxj8=";
12   };
14   # fixes the install path in the Makefile
15   patches = [ ./fix_install.patch ];
17   meta = with lib; {
18     description = "Like cat, but more colorful";
19     homepage = "https://github.com/lunasorcery/pridecat";
20     license = licenses.cc-by-nc-sa-40;
21     maintainers = with maintainers; [ lunarequest ];
22     mainProgram = "pridecat";
23   };