nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 fetchFromGitHub,
4 lib,
5}:
6
7buildDunePackage rec {
8 pname = "ubase";
9 version = "0.20";
10
11 minimalOCamlVersion = "4.14.0";
12
13 src = fetchFromGitHub {
14 owner = "sanette";
15 repo = "ubase";
16 tag = version;
17 sha256 = "sha256-zmYjWEk0r1h87RczCJu2tYlS79F/pAiBt16BplPmA7c=";
18 };
19
20 doCheck = true;
21
22 meta = {
23 description = "Remove accents from utf8 strings";
24 license = lib.licenses.gpl3;
25 homepage = "https://github.com/sanette/ubase";
26 maintainers = with lib.maintainers; [ mrdev023 ];
27 };
28}