Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1008 B
Nix
51 lines
1008 B
Nix
{
|
|
ocamlPackages,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
let
|
|
pname = "satyrographos";
|
|
version = "0.0.2.13";
|
|
src = fetchFromGitHub {
|
|
owner = "na4zagin3";
|
|
repo = "satyrographos";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-f9iJTr4nV7dFCMkI8+zv9qvYWRSw8H/xbbZm2LR9cB4=";
|
|
};
|
|
in
|
|
ocamlPackages.buildDunePackage {
|
|
inherit pname version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
nativeBuildInputs = with ocamlPackages; [
|
|
menhir
|
|
];
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
core_unix
|
|
fileutils
|
|
opam-format
|
|
opam-state
|
|
ppx_deriving
|
|
ppx_deriving_yojson
|
|
ppx_import
|
|
ppx_jane
|
|
shexp
|
|
uri
|
|
uri-sexp
|
|
yaml-sexp
|
|
yojson
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/na4zagin3/satyrographos/releases/tag/${src.rev}";
|
|
description = "Package manager for SATySFi";
|
|
homepage = "https://github.com/na4zagin3/satyrographos";
|
|
maintainers = with lib.maintainers; [ momeemt ];
|
|
mainProgram = "satyrographos";
|
|
license = lib.licenses.lgpl3Plus;
|
|
};
|
|
}
|