chute2/flake.nix

36 lines
1003 B
Nix
Raw Normal View History

2022-07-07 16:04:23 -07:00
{
description = "Chute - Cryptocurrency Parachute.";
inputs = {
nixpkgs.url = "nixpkgs/nixos-22.05";
utils.url = "github:numtide/flake-utils";
clj-nix = {
url = "github:jlesquembre/clj-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, utils, clj-nix, ... }:
(utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
mkCljBin = clj-nix.packages."${system}".mkCljBin;
update-deps = pkgs.writeShellScriptBin "update-deps.sh" ''
${clj-nix.packages."${system}".deps-lock}/bin/deps-lock
'';
in {
packages.chute = mkCljBin {
projectSrc = ./.;
name = "org.fudo/chute";
main-ns = "chute.core";
jdkRunner = pkgs.jdk17_headless;
version = "0.1";
};
devShell =
pkgs.mkShell { buildInputs = with pkgs; [ clojure update-deps ]; };
})) // {
nixosModule = { };
};
}