thcal

that which calculates cutting parameters for CNC thread turning.
git clone https://git.sharifjon.com/thcal
Log | Files | Refs | README | LICENSE

flake.nix (425B)


      1 {
      2   description = "A very basic flake";
      3 
      4   inputs = {
      5     nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
      6   };
      7 
      8   outputs = { self, nixpkgs }: 
      9   let
     10     pkgs = nixpkgs.legacyPackages."x86_64-linux";
     11   in
     12   {
     13 
     14     devShells."x86_64-linux".default = pkgs.mkShell {
     15 
     16       packages = [ pkgs.python313Packages.tkinter ];
     17       
     18       shellHook = ''
     19       	export  PS1='\[\e[92m\](nix-shell)\[\e[0m\]\w '
     20 	
     21 	'';
     22     };
     23   };
     24 }
     25