aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2021-02-08 11:26:54 +1100
committerJustin Bedo <cu@cua0.org>2021-02-08 11:37:07 +1100
commit801da8cf9560e1af468d7333f34cb98ae11934a7 (patch)
tree14f2418b1d4f9d12a0a3adae9da1adad5fb3f47e
parentc7756678c8a543f216654d518eeee3c4bd6a4b8f (diff)
add flake.nix
-rw-r--r--flake.lock24
-rw-r--r--flake.nix6
2 files changed, 30 insertions, 0 deletions
diff --git a/flake.lock b/flake.lock
new file mode 100644
index 0000000..3053f49
--- /dev/null
+++ b/flake.lock
@@ -0,0 +1,24 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1609866355,
+ "narHash": "sha256-TMzb8nMePC4OusDde+xv8AIgbNYuFku/dlLkPO/hifM=",
+ "path": "/nix/store/9kfzklpzv0bh5v7xidriwy7pq07drza8-source",
+ "rev": "d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64",
+ "type": "path"
+ },
+ "original": {
+ "id": "nixpkgs",
+ "type": "indirect"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..dadeb23
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,6 @@
+{
+ description = "Bioinformatics workflows with Nix";
+ outputs = { self, ... }: {
+ lib = import ./.;
+ };
+}