summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/nonstd/default.nix
blob: a584f7bc9ed151cab0327a5017cd1e5489bee0b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchzip, buildDunePackage }:

buildDunePackage rec {
  pname = "nonstd";
  version = "0.0.3";

  minimumOCamlVersion = "4.02";

  src = fetchzip {
    url = "https://bitbucket.org/smondet/${pname}/get/${pname}.${version}.tar.gz";
    sha256 = "0ccjwcriwm8fv29ij1cnbc9win054kb6pfga3ygzdbjpjb778j46";
  };

  doCheck = true;

  meta = with lib; {
    homepage = https://bitbucket.org/smondet/nonstd;
    description = "Non-standard mini-library";
    license = licenses.isc;
    maintainers = [ maintainers.alexfmpe ];
  };
}