nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 20 lines 558 B view raw
1{ lib, buildDunePackage, fetchurl }: 2 3buildDunePackage rec { 4 minimalOCamlVersion = "4.06"; 5 pname = "owee"; 6 version = "0.7"; 7 8 src = fetchurl { 9 url = 10 "https://github.com/let-def/owee/releases/download/v${version}/owee-${version}.tbz"; 11 hash = "sha256-9FXcmddHg5mk5UWgYd4kTPOLOY/p6A/OBuvfas4elUA="; 12 }; 13 14 meta = with lib; { 15 description = "Experimental OCaml library to work with DWARF format"; 16 homepage = "https://github.com/let-def/owee/"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ vbgl alizter ]; 19 }; 20}