flake: cleanup

Former-commit-id: 56cb0820bebd5ef03a5f6c1fa2fc502fd8a5cbd3
Former-commit-id: ae00825a6f004da1928968b9746be501dbb68a8b
This commit is contained in:
Muhammad Nauman Raza 2024-03-22 19:46:53 +00:00
parent 3b958a6e22
commit 5a03546a7c
3 changed files with 1 additions and 54 deletions

View file

@ -1,5 +1,3 @@
use bit::BitIndex;
use crate::{ use crate::{
alu::*, alu::*,
memory::{MemoryAccess, MemoryInterface}, memory::{MemoryAccess, MemoryInterface},

View file

@ -21,55 +21,6 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils": {
"locked": {
"lastModified": 1659877975,
"narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixgl": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1685908677,
"narHash": "sha256-E4zUPEUFyVWjVm45zICaHRpfGepfkE9Z2OECV9HXfA4=",
"owner": "guibou",
"repo": "nixGL",
"rev": "489d6b095ab9d289fe11af0219a9ff00fe87c7c5",
"type": "github"
},
"original": {
"owner": "guibou",
"repo": "nixGL",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1660551188,
"narHash": "sha256-a1LARMMYQ8DPx1BgoI/UN4bXe12hhZkCNqdxNi6uS0g=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "441dc5d512153039f19ef198e662e4f3dbb9fd65",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1710272261, "lastModified": 1710272261,
@ -89,7 +40,6 @@
"root": { "root": {
"inputs": { "inputs": {
"fenix": "fenix", "fenix": "fenix",
"nixgl": "nixgl",
"nixpkgs-unstable": "nixpkgs-unstable", "nixpkgs-unstable": "nixpkgs-unstable",
"utils": "utils" "utils": "utils"
} }

View file

@ -15,7 +15,6 @@
nixpkgs-unstable, nixpkgs-unstable,
utils, utils,
fenix, fenix,
nixgl,
... ...
}: }:
utils.lib.eachDefaultSystem utils.lib.eachDefaultSystem
@ -23,7 +22,7 @@
system: let system: let
pkgs = import nixpkgs-unstable { pkgs = import nixpkgs-unstable {
inherit system; inherit system;
overlays = [fenix.overlays.default nixgl.overlay]; overlays = [fenix.overlays.default];
}; };
toolchain = pkgs.fenix.complete; toolchain = pkgs.fenix.complete;
in rec in rec