python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / misc / kitty-themes / default.nix
blobad6cdf9bfa64a012391ab986c279f45d4ce54665
1 { fetchFromGitHub, lib, stdenv }:
3 stdenv.mkDerivation rec {
4   pname = "kitty-themes";
5   version = "unstable-2022-08-11";
7   src = fetchFromGitHub {
8     owner = "kovidgoyal";
9     repo = pname;
10     rev = "72cf0dc4338ab1ad85f5ed93fdb13318916cae14";
11     sha256 = "d9mO2YqA7WD2dTPsmNeQg2dUR/iv2T/l7yxrt6WKX60=";
12   };
14   installPhase = ''
15     mkdir -p $out/themes
16     mv themes.json $out
17     mv themes/*.conf $out/themes
18   '';
20   meta = with lib; {
21     homepage = "https://github.com/kovidgoyal/kitty-themes";
22     description = "Themes for the kitty terminal emulator";
23     license = licenses.gpl3Only;
24     platforms = platforms.all;
25     maintainers = with maintainers; [ nelsonjeppesen ];
26   };