Commit Graph

52 Commits

Author SHA1 Message Date
Adam Stephens
0fa2ff3871
kitty: 0.28.1 -> 0.29.0 2023-07-12 11:19:12 -04:00
Artturin
787af0f79f kitty: make possible to override goModules
go-modules name had to be changed to goModules so it becomes a env
var (bash vars can't contain -)

enables overriding the build without overriding configurePhase

```
pkgs.kitty.overrideAttrs (finalAttrs: previousAttrs: {
  name = "kitty-master";
  version = "master";
  src = pkgs.fetchFromGitHub {
    owner = "kovidgoyal";
    repo = "kitty";
    rev = "66a2efd191f98a1a5b3c2d4fdc9569204b445a2f";
    sha256 = "sha256-pJuhnJOjGBflHXOOYKrg9/e3c+VGEESZtfka84ARCd4=";
  };
  goModules = (pkgs.buildGoModule {
    pname = "kitty-go-modules";
    inherit (finalAttrs) src version;
    vendorHash = "sha256-eAovZ/7JnvXlnlFyt0skhYJ1Nrzy2XCpRlQvSmWCyaY=";
  }).go-modules;
})
```
2023-07-05 18:20:10 +03:00
Lin Jian
2c8500e8a8 kitty-themes: unstable-2023-03-08 -> unstable-2023-06-01 2023-06-02 11:25:23 +00:00
Adam Stephens
eebc4d8864
kitty: 0.27.1 -> 0.28.1 2023-04-21 08:13:17 -04:00
Anderson Torres
3e29ae4159 kitty-themes: 2023-01-08 -> 2023-03-08 2023-03-12 14:42:55 -03:00
Anderson Torres
0871493aa5 kitty-themes: move to kitty directory 2023-03-12 14:42:55 -03:00
Adam Stephens
fa2feee9d4
kitty: 0.27.0 -> 0.27.1 2023-02-07 08:32:54 -05:00
Adam Stephens
527831c1e3 kitty: fix GOFLAGS typo to resolve go runtime dependency 2023-02-05 14:13:23 +10:00
Adam Stephens
c611a3428a kitty: build kitten statically and expose as output 2023-02-05 07:46:27 +10:00
Adam Stephens
9032311f3c kitty: 0.26.5 -> 0.27.0 2023-02-05 07:46:27 +10:00
Guillaume Girol
33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00
Malo Bourgon
3b1880dd14 kitty: Fix clone-in-kitty not working on bash >= 5.2 2023-01-17 10:04:21 -08:00
Malo Bourgon
3a150b7562 kitty: unbreak on x86_64-darwin 2023-01-16 11:23:07 -08:00
Adam Stephens
3126ef6a40
kitty: use apple_sdk_11 and mark as broken on x86_64-darwin 2022-12-30 09:19:38 -05:00
Adam Stephens
da48047d8f
kitty: add adamcstephens as maintainer 2022-12-30 09:18:22 -05:00
R. Ryantm
71b2fdc8dc kitty: 0.26.2 -> 0.26.5 2022-11-07 14:14:19 +00:00
Luflosi
c884134125
kitty: 0.25.2 -> 0.26.2
https://github.com/kovidgoyal/kitty/releases/tag/v0.26.2
2022-10-03 13:46:34 +02:00
Vir Chaudhury
078ecdaf98
kitty: fix tests on darwin 2022-08-09 06:42:07 +08:00
Brian Leung
6bd65099b6
kitty: 0.25.1 -> 0.25.2 2022-06-13 18:32:04 -07:00
Brian Leung
b22c2113df
kitty: 0.25.0 -> 0.25.1 2022-05-31 20:09:56 -07:00
Rick van Schijndel
37c633f7ae treewide: pkgs/applications: mark broken for darwin 2022-05-29 10:56:04 +02:00
Artturi
c1d9497b81
Merge pull request #170545 from malob/update-kitty
kitty: 0.24.4 -> 0.25.0
2022-05-28 04:21:37 +03:00
Malo Bourgon
41d4a16961 kitty: 0.24.4 -> 0.25.0 2022-05-27 10:32:25 -07:00
Infinidoge
dac52f7d71 kitty: remove xsel from inputs
The xsel depencency was dropped unstream, so it is no longer necessary
2022-05-17 22:17:13 -04:00
Artturin
f0eff1991c kitty: libGL doesn't have to be a propagatedBuildInputs
it was added in cec27ceabc and there is no
context of why its in propagatedBuildInputs
2022-05-08 19:39:53 +03:00
Malo Bourgon
49f75b1483 kitty: add patch to fix -stack_size flag issue on darwin 2022-04-01 10:16:52 -07:00
Jamie McClymont
694862304b nixos/tests: add passthru.tests to all tested terminal emulators 2022-03-20 16:48:06 +13:00
Luflosi
b5545af4c9
kitty: 0.24.2 -> 0.24.4
https://github.com/kovidgoyal/kitty/releases/tag/v0.24.4
2022-03-04 14:52:30 +01:00
Luflosi
0c35cd1ddb
kitty: generate the newest version of the fish completion
Also change the command invocation to be consistent with the official documentation.
These changes were suggested by @page-down in https://github.com/NixOS/nixpkgs/pull/162215#issuecomment-1057969939. Thank you!
2022-03-04 14:52:29 +01:00
Luflosi
212c834fc3
kitty: change formatting of inputs 2022-03-04 14:52:29 +01:00
R. Ryantm
02ba965390 kitty: 0.24.1 -> 0.24.2 2022-02-04 00:21:32 +00:00
Zhong Jianxin
5025d2fcf9
kitty: Fix compilation on apple sdk 11
Closes https://github.com/NixOS/nixpkgs/pull/137512.
2022-01-08 13:44:08 +01:00
Luflosi
aa1932ea7a
kitty: copy shell integration files into separate output
https://sw.kovidgoyal.net/kitty/build/#notes-for-linux-macos-packagers recommends to split kitty into three packages with kitty-shell-integration being the one that includes some files useful for the shell integration. We already use kitty.terminfo in Nixpkgs instead of kitty-terminfo but we can't use kitty.shell-integration instead of kitty-shell-integration because shell-integration is not a valid shell variable name. I named it kitty.shell_integration instead. This package can then be used by a future kitty nixos module that still needs to be created. Without this commit, kitty would modify the user's ~/.bashrc when using bash.
2022-01-08 13:44:08 +01:00
Luflosi
3bb443d5d9
kitty: 0.23.1 -> 0.24.1
https://github.com/kovidgoyal/kitty/releases/tag/v0.23.1
A new dependency is needed.
Closes https://github.com/NixOS/nixpkgs/issues/153928.
2022-01-08 13:44:08 +01:00
Luflosi
6f7a433402
kitty: combine installPhase and postInstall phase 2022-01-08 13:44:07 +01:00
Artturin
58fda166ed kitty: fix fontconfig warning during tests 2021-10-31 13:57:39 +02:00
Luflosi
b4038eacd8
kitty: 0.21.2 -> 0.23.1
https://github.com/kovidgoyal/kitty/releases/tag/v0.23.1
Add the new dependencies required for building the documentation.
Also run the postInstall hook at the end of the installPhase instead of in the middle.
The URL of the changelog has changed slightly. The old one still works because of a redirect but it's better to use the new one directly.
2021-08-17 11:27:52 +02:00
R. RyanTM
f5ca57b613 kitty: 0.21.1 -> 0.21.2 2021-06-29 00:27:07 +00:00
Luflosi
f3cd158eac
kitty: 0.21.0 -> 0.21.1
https://github.com/kovidgoyal/kitty/releases/tag/v0.21.1
2021-06-14 12:02:39 +02:00
Luflosi
d11e9b1fe5
kitty: runHook preBuild and postBuild 2021-06-14 12:02:30 +02:00
Luflosi
9052ddec40
kitty: 0.20.3 -> 0.21.0
https://github.com/kovidgoyal/kitty/releases/tag/v0.21.0
The patch is no longer needed.
2021-06-12 16:25:50 +02:00
Luflosi
00872b6a76
kitty: 0.20.2 -> 0.20.3
https://github.com/kovidgoyal/kitty/releases/tag/v0.20.3
2021-05-06 16:24:25 +02:00
Luflosi
47f4780fc3
kitty: 0.19.3 -> 0.20.2
https://github.com/kovidgoyal/kitty/releases/tag/v0.20.2
2021-04-28 10:47:58 +02:00
Luflosi
4d098d6b39
kitty: clarify license 2021-04-28 10:47:57 +02:00
Luflosi
2751cdfe09
kitty: remove unused variable 2021-04-28 10:47:56 +02:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Ben Siraphob
badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Luflosi
0c0a1a9a6d
kitty: 0.19.2 -> 0.19.3
https://github.com/kovidgoyal/kitty/releases/tag/v0.19.3
2020-12-21 15:53:15 +01:00
Luflosi
182b7cfb71
kitty: 0.19.1 -> 0.19.2
https://github.com/kovidgoyal/kitty/releases/tag/v0.19.2
2020-11-13 14:17:38 +01:00