nixpkgs/pkgs/development/ocaml-modules/stdcompat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
581 B
Nix
Raw Normal View History

{ buildDunePackage
, lib
, fetchurl
2021-05-29 13:21:54 +00:00
}:
buildDunePackage rec {
pname = "stdcompat";
version = "19";
2021-05-29 13:21:54 +00:00
src = fetchurl {
url = "https://github.com/thierry-martinez/stdcompat/releases/download/v${version}/stdcompat-${version}.tar.gz";
sha256 = "sha256-DKQGd4nnIN6SPls6hcA/2Jvc7ivYNpeMU6rYsVc1ClU=";
2021-05-29 13:21:54 +00:00
};
# Otherwise ./configure script will run and create files conflicting with dune.
dontConfigure = true;
2021-05-29 13:21:54 +00:00
meta = {
homepage = "https://github.com/thierry-martinez/stdcompat";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}