From 90507b2987dbcc01e8123a0d42bf51319cc33784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Krop=C3=A1=C4=8Dek?= Date: Sun, 24 Nov 2024 11:34:27 +0100 Subject: [PATCH] started migration to go-migrate --- flake.lock | 6 +++--- flake.nix | 7 +------ 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index ff840e8..279b697 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1731245184, - "narHash": "sha256-vmLS8+x+gHRv1yzj3n+GTAEObwmhxmkkukB2DwtJRdU=", + "lastModified": 1732238832, + "narHash": "sha256-sQxuJm8rHY20xq6Ah+GwIUkF95tWjGRd1X8xF+Pkk38=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "aebe249544837ce42588aa4b2e7972222ba12e8f", + "rev": "8edf06bea5bcbee082df1b7369ff973b91618b8d", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 8bb232e..6cb017f 100644 --- a/flake.nix +++ b/flake.nix @@ -11,12 +11,6 @@ packages.x86_64-linux = { default = pkgs.callPackage ./nix/secret-santa.nix { }; }; - /* - packages.x86_64-linux.default = pkgs.dockerTools.buildLayeredImage { - name = "secret-santa"; - tag = "latest"; - }; - */ devShells.x86_64-linux = { default = pkgs.mkShell { packages = [ @@ -24,6 +18,7 @@ (pkgs.callPackage ./nix/sql-migrate.nix { }) (pkgs.callPackage ./nix/actiongraph.nix { }) pkgs.sqlite + pkgs.go-migrate ]; }; };