summaryrefslogtreecommitdiff
path: root/6502/packages.nix
diff options
context:
space:
mode:
Diffstat (limited to '6502/packages.nix')
-rw-r--r--6502/packages.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/6502/packages.nix b/6502/packages.nix
new file mode 100644
index 0000000..6ce8162
--- /dev/null
+++ b/6502/packages.nix
@@ -0,0 +1,11 @@
+pkgs: lcq: {
+ native = pkgs.stdenv.mkDerivation {
+ pname = "libcolonq-6502";
+ version = "git";
+ src = ./.;
+ hardeningDisable = ["all"];
+ installPhase = ''
+ make prefix=$out install
+ '';
+ };
+}