summaryrefslogtreecommitdiff
path: root/.nix
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-01-23 12:43:57 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-01-23 12:43:57 +0100
commitda656e3333ca98be9e80dbc63640598a392186f9 (patch)
treec390aee318b00bc8ed47111cf44d497a38319ad2 /.nix
parent0a8dd2541e20f59812db21e8bad069b50cf8ebaf (diff)
downloadlibs-lbm-da656e3333ca98be9e80dbc63640598a392186f9.tar.gz
Dangling changes and address boundary errors
Diffstat (limited to '.nix')
-rw-r--r--.nix/badchimp.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/.nix/badchimp.nix b/.nix/badchimp.nix
new file mode 100644
index 0000000..f747ffe
--- /dev/null
+++ b/.nix/badchimp.nix
@@ -0,0 +1,12 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+}:
+
+stdenv.mkDerivation {
+ pname = "BadChimp";
+ version = "0.0.0";
+
+ src = fetchFromGitHub {
+ };
+}