aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..b616a91
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,29 @@
+{
+ inputs = {
+ nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
+ flake-utils.url = "github:numtide/flake-utils";
+ };
+ outputs =
+ { self
+ , nixpkgs
+ , flake-utils
+ }:
+ flake-utils.lib.eachDefaultSystem (
+ system:
+ let
+ pkgs = import nixpkgs { inherit system; };
+ app = pkgs.callPackage ./app.nix { inherit pkgs; };
+ deps = with pkgs; with perlPackages; [
+ perl JSON LWP LWPProtocolHttps PathTiny
+ ];
+ in
+ with pkgs; {
+ packages.docker = symlinkJoin {
+ name = "docker";
+ paths = [ perl app ];
+ meta.priority = 5;
+ };
+ devShells.default = mkShell { buildInputs = deps; };
+ }
+ );
+}