mirror of
				https://github.com/NotAShelf/nyxexprs.git
				synced 2025-11-04 04:32:22 +00:00 
			
		
		
		
	Compare commits
	
		
			No commits in common. "ea5edacde8259e23bc89c2ac621b3cb674c563f6" and "439452c9d9883ace27300b6cc5329c2e1fed09df" have entirely different histories.
		
	
	
		
			
				ea5edacde8
			
			...
			
				439452c9d9
			
		
	
		
					 4 changed files with 3 additions and 43 deletions
				
			
		
							
								
								
									
										1
									
								
								.github/workflows/build.yml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.github/workflows/build.yml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -16,7 +16,6 @@ jobs:
 | 
			
		|||
          - ani-cli
 | 
			
		||||
          - cloneit
 | 
			
		||||
          - foot-transparent
 | 
			
		||||
          - fuzzel-git
 | 
			
		||||
          - headscale-ui
 | 
			
		||||
          - mastodon-bird-ui
 | 
			
		||||
          - zsh-stripped
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -12,8 +12,7 @@ contains a description of the package inside its README.
 | 
			
		|||
| alejandra-custom | A patched version of the **Alejandra** Nix formatter, without the pesky ads and spacing patches  |
 | 
			
		||||
| ani-cli          |            An up-to-date, auto updated version of ani-cli following auto-updated pins            |
 | 
			
		||||
| cloneit          |                   A CLI tool to download specific GitHub directories or files                    |
 | 
			
		||||
| foot-transparent |   A patched version of the Foot terminal emulator that brings back fullscreen transparency[^1]   |
 | 
			
		||||
| fuzzel-git       |                  Patched version of Fuzzel that tracks the latest git revision                   |
 | 
			
		||||
| foot-transparent |   A patched version of the foot terminal emulator that brings back fullscreen transparency[^1]   |
 | 
			
		||||
| headscale-ui     |            A web frontend for the headscale Tailscale-compatible coordination server             |
 | 
			
		||||
| mastodon-bird-ui |                        Mastodon web UI, but strongly inspired by Twitter.                        |
 | 
			
		||||
| zsh-stripped     | ZSH with newinstall scripts removed, and patches to handle special characters such as `^` or `#` |
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -44,17 +44,6 @@
 | 
			
		|||
      "url": null,
 | 
			
		||||
      "hash": "1znfk64kimm0vr3alvj66i1yn5glig3bw60n2lv9cn4jzi1b7qhb"
 | 
			
		||||
    },
 | 
			
		||||
    "fuzzel": {
 | 
			
		||||
      "type": "Git",
 | 
			
		||||
      "repository": {
 | 
			
		||||
        "type": "Git",
 | 
			
		||||
        "url": "https://codeberg.org/dnkl/fuzzel.git"
 | 
			
		||||
      },
 | 
			
		||||
      "branch": "master",
 | 
			
		||||
      "revision": "f1a5412151358b37dcdcf820e625371f0b5ceec9",
 | 
			
		||||
      "url": null,
 | 
			
		||||
      "hash": "1hb2kk2jl9g38fq2895kshki9wsvncsjk3xb15b7pzwnm2gg3j8h"
 | 
			
		||||
    },
 | 
			
		||||
    "mov-cli": {
 | 
			
		||||
      "type": "GitRelease",
 | 
			
		||||
      "repository": {
 | 
			
		||||
| 
						 | 
				
			
			@ -73,8 +62,8 @@
 | 
			
		|||
    "nixpkgs": {
 | 
			
		||||
      "type": "Channel",
 | 
			
		||||
      "name": "nixpkgs-unstable",
 | 
			
		||||
      "url": "https://releases.nixos.org/nixpkgs/nixpkgs-24.11pre665874.19674872444b/nixexprs.tar.xz",
 | 
			
		||||
      "hash": "1660f7z8rsa392kd5byq5qw2fn54bpry6vc3dg0hrmxmv6qm1h3d"
 | 
			
		||||
      "url": "https://releases.nixos.org/nixpkgs/nixpkgs-24.11pre664329.154bcb95ad51/nixexprs.tar.xz",
 | 
			
		||||
      "hash": "0mny6j9ahl87m7cv508dbll8yk29v4xha0bsdwnh1y8zkgsydgqw"
 | 
			
		||||
    },
 | 
			
		||||
    "rat": {
 | 
			
		||||
      "type": "GitRelease",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,27 +0,0 @@
 | 
			
		|||
{
 | 
			
		||||
  lib,
 | 
			
		||||
  fetchFromGitea,
 | 
			
		||||
  fuzzel,
 | 
			
		||||
  pins,
 | 
			
		||||
  date,
 | 
			
		||||
  ...
 | 
			
		||||
}:
 | 
			
		||||
fuzzel.overrideAttrs (let
 | 
			
		||||
  pin = pins.fuzzel;
 | 
			
		||||
in {
 | 
			
		||||
  pname = "foot-transparent";
 | 
			
		||||
  version = "0-${date}-unstable";
 | 
			
		||||
  src = fetchFromGitea {
 | 
			
		||||
    domain = "codeberg.org";
 | 
			
		||||
    owner = "dnkl";
 | 
			
		||||
    repo = "fuzzel";
 | 
			
		||||
    rev = pin.revision;
 | 
			
		||||
    sha256 = pin.hash;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  meta = {
 | 
			
		||||
    description = "Patched version of Fuzzel app launcher that tracks latest git revision";
 | 
			
		||||
    mainProgram = "fuzzel";
 | 
			
		||||
    maintainers = with lib.maintainers; [NotAShelf];
 | 
			
		||||
  };
 | 
			
		||||
})
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue