30 lines
994 B
Nix
30 lines
994 B
Nix
{
|
|
gregor-lib,
|
|
buildRacketPackage,
|
|
lib,
|
|
fetchFromGitHub,
|
|
}: (buildRacketPackage {
|
|
pname = "north";
|
|
version = "0.8+00e5221";
|
|
dependencies = [gregor-lib];
|
|
src = fetchFromGitHub {
|
|
owner = "Bogdanp";
|
|
repo = "racket-north";
|
|
rev = "00e52217081d421bcdd1c2248e309e0d92dd5314";
|
|
hash = "sha256-oSjrLNsQ53vUIFRF2spie7o/NSrlF29Dqw2et9Isf3o=";
|
|
};
|
|
gitSubpath = "north";
|
|
passthru = {
|
|
racketModules = ["north/main.rkt" "north/north.scrbl" "north/tool/syntax-color.rkt" "north/adapter/sqlite.rkt" "north/adapter/base.rkt" "north/migrate.rkt" "north/adapter/postgres.rkt" "north/lang/reader.rkt" "north/base.rkt" "north/cli.rkt"];
|
|
racketLaunchers = [];
|
|
racoCommands = ["north"];
|
|
};
|
|
meta = {
|
|
description = "A database migration tool.";
|
|
sourceProvenance = [(((lib).sourceTypes).fromSource)];
|
|
broken = false;
|
|
license = [(((lib).licensesSpdx)."BSD-3-Clause")];
|
|
homepage = "https://github.com/Bogdanp/racket-north/tree/HEAD/README.md";
|
|
};
|
|
})
|