Skip to content

Commit

Permalink
satyrographos: init at 0.0.2.13 (#345651)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Jan 1, 2025
2 parents cbd7bf2 + efe62b6 commit 1c5eed9
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions pkgs/by-name/sa/satyrographos/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
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;
};
}

0 comments on commit 1c5eed9

Please sign in to comment.