44 lines
941 B
Nix
44 lines
941 B
Nix
{
|
|
fetchgit,
|
|
buildDunePackage,
|
|
|
|
cstruct,
|
|
dune-configurator,
|
|
eio,
|
|
eio_linux,
|
|
eio_main,
|
|
ppx_unicode,
|
|
ptime,
|
|
xlog,
|
|
}:
|
|
buildDunePackage rec {
|
|
pname = "systemd-ml";
|
|
version = "0.1.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.lain.faith/haskal/systemd-ml.git";
|
|
rev = version;
|
|
hash = "sha256-IkWBObwQJF5wum46OsLTH1wmPqWnF5/UuTnBFbs/o/0=";
|
|
};
|
|
|
|
minimalOcamlVersion = "5.1";
|
|
dontStrip = true;
|
|
|
|
nativeBuildInputs = [ dune-configurator ppx_unicode ];
|
|
propagatedBuildInputs = [ cstruct dune-configurator eio eio_linux eio_main ppx_unicode ptime xlog ];
|
|
|
|
meta = {
|
|
description = "";
|
|
homepage = "https://git.lain.faith/haskal/systemd-ml";
|
|
license = {
|
|
shortName = "fyptl";
|
|
fullName = "fuck you pirate this license";
|
|
deprecated = false;
|
|
free = false;
|
|
redistributable = false;
|
|
url = "data:text/html,<h1>fuck you pirate this</h1>";
|
|
};
|
|
maintainers = [];
|
|
};
|
|
}
|