Compare commits

...

2 commits

Author SHA1 Message Date
237d22276e
update xontrib-cd package to build with poetry 2024-12-30 12:00:40 -05:00
5680c0afef
add any-nix-shell 2024-12-30 11:59:52 -05:00
2 changed files with 11 additions and 1 deletions

View file

@ -6,6 +6,10 @@
programs.command-not-found.enable = false;
environment.systemPackages = with pkgs; [
any-nix-shell
];
users.defaultUserShell = pkgs.xonsh;
programs.xonsh =
let
@ -30,6 +34,7 @@
gh copilot alias -- bash > @(tmpfile)
source-bash @(tmpfile)
ulimit -n 4096 # This is so that Gauntlet is able to be built
execx($(${pkgs.any-nix-shell}/bin/any-nix-shell xonsh --info-right))
'';
package = pkgs.xonsh.override {
extraPackages = ps: [

View file

@ -1,7 +1,8 @@
{ pkgs, ... }:
(pkgs.python3Packages.buildPythonPackage rec {
(pkgs.python311Packages.buildPythonPackage rec {
name = "xontrib-cd";
version = "0.3.1";
format = "pyproject";
src = pkgs.fetchFromGitHub {
owner = "eugenesvk";
@ -10,6 +11,10 @@
sha256 = "XxSxjyCg7PeX1v3e2KKicvAPmNeq+qVqbW4fXTwAiic=";
};
nativeBuildInputs = with pkgs.python311Packages; [ poetry-core ];
propagatedBuildInputs = with pkgs.python311Packages; [ xonsh ];
meta = {
homepage = "https://github.com/eugenesvk/xontrib-cd";
description = "`cd` to any path without escaping in xonsh shell: `cd ~/[te] st`";