started migration to go-migrate

This commit is contained in:
Jakub Kropáček 2024-11-24 11:34:27 +01:00
parent 384fd86f66
commit 90507b2987
2 changed files with 4 additions and 9 deletions

View file

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1731245184, "lastModified": 1732238832,
"narHash": "sha256-vmLS8+x+gHRv1yzj3n+GTAEObwmhxmkkukB2DwtJRdU=", "narHash": "sha256-sQxuJm8rHY20xq6Ah+GwIUkF95tWjGRd1X8xF+Pkk38=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "aebe249544837ce42588aa4b2e7972222ba12e8f", "rev": "8edf06bea5bcbee082df1b7369ff973b91618b8d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -11,12 +11,6 @@
packages.x86_64-linux = { packages.x86_64-linux = {
default = pkgs.callPackage ./nix/secret-santa.nix { }; default = pkgs.callPackage ./nix/secret-santa.nix { };
}; };
/*
packages.x86_64-linux.default = pkgs.dockerTools.buildLayeredImage {
name = "secret-santa";
tag = "latest";
};
*/
devShells.x86_64-linux = { devShells.x86_64-linux = {
default = pkgs.mkShell { default = pkgs.mkShell {
packages = [ packages = [
@ -24,6 +18,7 @@
(pkgs.callPackage ./nix/sql-migrate.nix { }) (pkgs.callPackage ./nix/sql-migrate.nix { })
(pkgs.callPackage ./nix/actiongraph.nix { }) (pkgs.callPackage ./nix/actiongraph.nix { })
pkgs.sqlite pkgs.sqlite
pkgs.go-migrate
]; ];
}; };
}; };