add xDSL package and disable emacs

This commit is contained in:
Felix Suchert 2023-05-05 15:13:43 +02:00
parent 5728da35dc
commit 0b21a10afe
Signed by: feliix42
GPG key ID: 24363525EA0E8A99
3 changed files with 35 additions and 14 deletions

View file

@ -166,10 +166,10 @@
programs.fish.enable = true; programs.fish.enable = true;
programs.vim.defaultEditor = true; programs.vim.defaultEditor = true;
services.emacs = { # services.emacs = {
install = true; # install = true;
enable = false; # enable = false;
}; # };
# List of packages installed in system profile. # List of packages installed in system profile.
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -23,11 +23,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1683009613, "lastModified": 1683269598,
"narHash": "sha256-jJh8JaoHOLlk7iFLgZk1PlxCCNA2KTKfOLMLCa9mduA=", "narHash": "sha256-KNsb+nBbB1Fmxd07dt4E0KXMT4YeKJB7gQaA6Xfk+mo=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "7dc46304675f4ff2d6be921ef60883efd31363c4", "rev": "51559e691f1493a26f94f1df1aaf516bb507e78b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,11 +39,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1682817260, "lastModified": 1683207485,
"narHash": "sha256-kFMXzKNj4d/0Iqbm5l57rHSLyUeyCLMuvlROZIuuhvk=", "narHash": "sha256-gs+PHt/y/XQB7S8+YyBLAM8LjgYpPZUVFQBwpFSmJro=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "db1e4eeb0f9a9028bcb920e00abbc1409dd3ef36", "rev": "cc45a3f8c98e1c33ca996e3504adefbf660a72d1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -62,11 +62,11 @@
}, },
"unstable": { "unstable": {
"locked": { "locked": {
"lastModified": 1682879489, "lastModified": 1683194677,
"narHash": "sha256-sASwo8gBt7JDnOOstnps90K1wxmVfyhsTPPNTGBPjjg=", "narHash": "sha256-Am7aCGNy/h6RMnvg7Pn4PHQXZZq9FyIUA9klYxBwyDI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "da45bf6ec7bbcc5d1e14d3795c025199f28e0de0", "rev": "0d8145a5d81ebf6698077b21042380a3a66a11c7",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -11,7 +11,28 @@
pylint pylint
# rpy2 # rpy2
# NOTE(feliix42): due to security vulnerability in the naughty zone for now. # NOTE(feliix42): due to security vulnerability in the naughty zone for now.
#jupyter jupyter
## xDSL
(
buildPythonPackage rec {
pname = "xdsl";
version = "0.12.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ZpZ7DTwlDTHeMUJ2SSe3PR+8iaZBShYelP5TkutKWS0=";
};
doCheck = false;
propagatedBuildInputs = [
pkgs.python3Packages.pip
pkgs.python3Packages.pytest
pkgs.python3Packages.filecheck
# pkgs.python3Packages.lit
pkgs.lit
pkgs.python3Packages.immutabledict
];
}
)
]; ];
python-with-my-packages = python3.withPackages my-python-packages; python-with-my-packages = python3.withPackages my-python-packages;
in in