567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
27 lines
573 B
Nix
27 lines
573 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchurl,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
minimalOCamlVersion = "4.08";
|
|
pname = "owee";
|
|
version = "0.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/let-def/owee/releases/download/v${version}/owee-${version}.tbz";
|
|
hash = "sha256-Bk9iRfWZXV0vTx+cbSmS4v2+Pd4ygha67Hz6vUhXlA0=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Experimental OCaml library to work with DWARF format";
|
|
homepage = "https://github.com/let-def/owee/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
vbgl
|
|
alizter
|
|
];
|
|
};
|
|
}
|