nix-dotfiles/pkgs/xdg-terminal-exec/xdg-terminal-exec.nix
vorboyvo 8898a6cc13 Reorganized packages list a bit
Added xdg-terminal-exec
Added papirus icon theme; not yet active
Enabled fcitx for sway
Enabled sway autolaunch on login in tty1
Set git config
2024-01-30 15:21:59 -05:00

18 lines
386 B
Nix

{ pkgs }:
with pkgs;
stdenv.mkDerivation rec {
name = "xdg-terminal-exec";
version = "efc3517";
src = fetchFromGitHub {
owner = "Vladimir-csp";
repo = "xdg-terminal-exec";
rev = version;
hash = "sha256-uLUHvSjxIjmy0ejqLfliB6gHFRwyTWNH1RL5kTXebUM="; # TODO will fix
};
installPhase = ''
install -Dm755 xdg-terminal-exec $out/bin/xdg-terminal-exec
'';
}