biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / stdcompat / default.nix
blob33e93967e192ea66b1708805b46231e187731339
1 { buildDunePackage
2 , lib
3 , fetchurl
4 }:
6 buildDunePackage rec {
7   pname = "stdcompat";
8   version = "19";
10   src = fetchurl {
11     url = "https://github.com/thierry-martinez/stdcompat/releases/download/v${version}/stdcompat-${version}.tar.gz";
12     sha256 = "sha256-DKQGd4nnIN6SPls6hcA/2Jvc7ivYNpeMU6rYsVc1ClU=";
13   };
15   # Otherwise ./configure script will run and create files conflicting with dune.
16   dontConfigure = true;
18   meta = {
19     homepage = "https://github.com/thierry-martinez/stdcompat";
20     license = lib.licenses.bsd2;
21     maintainers = [ lib.maintainers.vbgl ];
22   };