summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2023-08-02 14:38:45 +1000
committerJustin Bedo <cu@cua0.org>2023-08-02 14:38:45 +1000
commit172f54474f3e92ad4df5c193a8605d4333da33e1 (patch)
treeb034412aab396b5865f4c80aface622b1919ccef /flake.nix
initial fastq streaming
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..e15a476
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,12 @@
+{
+ inputs.nixpkgs.url = "github:nixos/nixpkgs";
+ outputs = {self, nixpkgs}:
+ let
+ system = "x86_64-linux";
+ pkgs = import nixpkgs {inherit system;};
+ in
+ {
+ packages.${system}.default = pkgs.haskellPackages.callCabal2nix "dedumi" ./. {};
+ devShells.${system}.default = self.packages.${system}.default.env;
+ };
+}