about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-13 20:35:41 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-13 20:35:41 +0200
commitf5c358e7fe8cd7ce4b27dbdc3eea2a3881636337 (patch)
tree04173a7be103147a67045a7c2e703cdcb1e6d815
downloadall_the_issues-f5c358e7fe8cd7ce4b27dbdc3eea2a3881636337.zip
chore: Initial Commit
-rw-r--r--.envrc7
-rw-r--r--.gitignore6
-rw-r--r--README.md3
-rw-r--r--flake.lock27
-rw-r--r--flake.nix20
5 files changed, 63 insertions, 0 deletions
diff --git a/.envrc b/.envrc
new file mode 100644
index 00000000000..3b94a1349c1
--- /dev/null
+++ b/.envrc
@@ -0,0 +1,7 @@
+#!/usr/bin/env sh
+
+use flake
+
+if on_git_branch; then
+    echo && git status --short --branch
+fi
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000000..cb87f36f8ea
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+# build
+/target
+/result
+
+# dev env
+.direnv
diff --git a/README.md b/README.md
new file mode 100644
index 00000000000..0d02de82af3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# All the Nixos and rustc issues combined in git-bug
+
+This is mostly here for compliance and performance testing between git-bug and git-gub.
diff --git a/flake.lock b/flake.lock
new file mode 100644
index 00000000000..d5cbe443a55
--- /dev/null
+++ b/flake.lock
@@ -0,0 +1,27 @@
+{
+  "nodes": {
+    "nixpkgs": {
+      "locked": {
+        "lastModified": 1744536153,
+        "narHash": "sha256-awS2zRgF4uTwrOKwwiJcByDzDOdo3Q1rPZbiHQg/N38=",
+        "owner": "NixOS",
+        "repo": "nixpkgs",
+        "rev": "18dd725c29603f582cf1900e0d25f9f1063dbf11",
+        "type": "github"
+      },
+      "original": {
+        "owner": "NixOS",
+        "ref": "nixpkgs-unstable",
+        "repo": "nixpkgs",
+        "type": "github"
+      }
+    },
+    "root": {
+      "inputs": {
+        "nixpkgs": "nixpkgs"
+      }
+    }
+  },
+  "root": "root",
+  "version": 7
+}
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 00000000000..9fdabdec062
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,20 @@
+{
+  description = "All the isuses";
+
+  inputs = {
+    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
+  };
+
+  outputs = {nixpkgs, ...}: let
+    system = "x86_64-linux";
+    pkgs = nixpkgs.legacyPackages."${system}";
+  in {
+    devShells."${system}".default = pkgs.mkShell {
+      packages = with pkgs; [
+        git-bug
+      ];
+    };
+  };
+}
+# vim: ts=2
+