Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 21 lines 584 B view raw
1{ lib, buildDunePackage, fetchurl }: 2 3buildDunePackage rec { 4 minimalOCamlVersion = "4.06"; 5 duneVersion = "2"; 6 pname = "owee"; 7 version = "0.6"; 8 9 src = fetchurl { 10 url = 11 "https://github.com/let-def/owee/releases/download/v${version}/owee-${version}.tbz"; 12 sha256 = "sha256-GwXV5t4GYbDiGwyvQyW8NZoYvn4qXlLnjX331Bj1wjM="; 13 }; 14 15 meta = with lib; { 16 description = "An experimental OCaml library to work with DWARF format"; 17 homepage = "https://github.com/let-def/owee/"; 18 license = licenses.mit; 19 maintainers = with maintainers; [ vbgl alizter ]; 20 }; 21}