Compare commits
No commits in common. "8c514e017f103dd396de9c4aff2581e578690f0a" and "690ea291d901466f4c5d6a92d2cdac0c5935d610" have entirely different histories.
8c514e017f
...
690ea291d9
|
@ -91,11 +91,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1715106579,
|
"lastModified": 1714782413,
|
||||||
"narHash": "sha256-gZMgKEGiK6YrwGBiccZ1gemiUwjsZ1Zv49KYOgmX2fY=",
|
"narHash": "sha256-tbg0MEuKaPcUrnmGCu4xiY5F+7LW2+ECPKVAJd2HLwM=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "8be0d8a1ed4f96d99b09aa616e2afd47acc3da89",
|
"rev": "651b4702e27a388f0f18e1b970534162dec09aff",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -21,5 +21,10 @@
|
||||||
|
|
||||||
# FORTRAN
|
# FORTRAN
|
||||||
fortls
|
fortls
|
||||||
|
|
||||||
|
# JavaScript / TypeScript
|
||||||
|
nodejs
|
||||||
|
nodePackages.typescript-language-server
|
||||||
|
nodePackages.eslint
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
15
home/prog/jupyter/catppuccin_jupyterlab/default.nix
Normal file
15
home/prog/jupyter/catppuccin_jupyterlab/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchPypi,
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "catppuccin_jupyterlab";
|
||||||
|
version = "0.2.0";
|
||||||
|
format = "wheel";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version format;
|
||||||
|
hash = "sha256-qPML3SXyuDsqLeYasaS3QFylKDIvbtp0xtnjh7IOYrI=";
|
||||||
|
dist = "py3";
|
||||||
|
python = "py3";
|
||||||
|
};
|
||||||
|
}
|
8
home/prog/jupyter/default.nix
Normal file
8
home/prog/jupyter/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{python, ...}:
|
||||||
|
with python.pkgs; [
|
||||||
|
jupyterlab
|
||||||
|
jupyterlab-git
|
||||||
|
nbdime
|
||||||
|
nbconvert
|
||||||
|
(callPackage ./catppuccin_jupyterlab/default.nix {})
|
||||||
|
]
|
Loading…
Reference in a new issue