Compare commits

...

2 commits

Author SHA1 Message Date
Evie Litherland-Smith 8c514e017f Don't install JS/TS stuff by default 2024-05-10 06:41:31 +01:00
Evie Litherland-Smith 7d5236a773 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/651b4702e27a388f0f18e1b970534162dec09aff' (2024-05-04)
  → 'github:nixos/nixpkgs/8be0d8a1ed4f96d99b09aa616e2afd47acc3da89' (2024-05-07)
2024-05-10 06:36:19 +01:00
4 changed files with 3 additions and 31 deletions

View file

@ -91,11 +91,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1714782413,
"narHash": "sha256-tbg0MEuKaPcUrnmGCu4xiY5F+7LW2+ECPKVAJd2HLwM=",
"lastModified": 1715106579,
"narHash": "sha256-gZMgKEGiK6YrwGBiccZ1gemiUwjsZ1Zv49KYOgmX2fY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "651b4702e27a388f0f18e1b970534162dec09aff",
"rev": "8be0d8a1ed4f96d99b09aa616e2afd47acc3da89",
"type": "github"
},
"original": {

View file

@ -21,10 +21,5 @@
# FORTRAN
fortls
# JavaScript / TypeScript
nodejs
nodePackages.typescript-language-server
nodePackages.eslint
];
}

View file

@ -1,15 +0,0 @@
{
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";
};
}

View file

@ -1,8 +0,0 @@
{python, ...}:
with python.pkgs; [
jupyterlab
jupyterlab-git
nbdime
nbconvert
(callPackage ./catppuccin_jupyterlab/default.nix {})
]