mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
21 lines
384 B
Nix
21 lines
384 B
Nix
{ lib, fetchurl, buildDunePackage, uutf }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ubase";
|
|
version = "0.05";
|
|
|
|
minimumOCamlVersion = "4.05.0";
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [
|
|
uutf
|
|
];
|
|
|
|
src = fetchurl
|
|
{
|
|
url = "https://github.com/sanette/${pname}/archive/${version}.tar.gz";
|
|
sha256 = "sha256-D7/aCobZDS9/e5hLxd6pO9MJ4xXaSTACUXeQU4j5u0E=";
|
|
};
|
|
}
|