squash: remove Nix flake

This commit is contained in:
ThinkChaos 2023-11-30 20:28:34 -05:00
parent c5cc1120a9
commit ac54110886
2 changed files with 0 additions and 56 deletions

View File

@ -1,25 +0,0 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1700794826,
"narHash": "sha256-RyJTnTNKhO0yqRpDISk03I/4A67/dp96YRxc86YOPgU=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5a09cb4b393d58f9ed0d9ca1555016a8543c2ac8",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@ -1,31 +0,0 @@
{
outputs = { self, nixpkgs }:
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
{
packages.x86_64-linux = rec {
default = blocky;
blocky = pkgs.hello;
};
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = with pkgs; [
# TODO: trim
# delve
# clang
# gcc
ginkgo
go
# go-outline
# golangci-lint
# gofumpt
# gomodifytags
# gopls
# gopkgs
# gotests
# impl
];
};
};
}