ocamlPackages.semaphore-compat: small cleaning

This commit is contained in:
Vincent Laporte
2025-11-28 05:57:43 +01:00
parent 6716139151
commit 6bfa08651e
@@ -4,24 +4,22 @@
fetchurl,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "semaphore-compat";
version = "1.0.2";
src = fetchurl {
url = "https://github.com/mirage/semaphore-compat/releases/download/${version}/semaphore-compat-${version}.tbz";
sha256 = "sha256-4CnZ2vX17IPpnlA7CNeuxZEKfA5HFoeQvwH0tCKNRnY=";
url = "https://github.com/mirage/semaphore-compat/releases/download/${finalAttrs.version}/semaphore-compat-${finalAttrs.version}.tbz";
hash = "sha256-4CnZ2vX17IPpnlA7CNeuxZEKfA5HFoeQvwH0tCKNRnY=";
};
useDune2 = true;
meta = with lib; {
meta = {
description = "Compatibility Semaphore module";
homepage = "https://github.com/mirage/semaphore-compat";
license = with licenses; [
license = with lib.licenses; [
lgpl21Plus
ocamlLgplLinkingException
];
maintainers = [ maintainers.sternenseemann ];
maintainers = [ lib.maintainers.sternenseemann ];
};
}
})