lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.sequence: 0.8 -> 0.10

+4 -4
+4 -4
pkgs/development/ocaml-modules/sequence/default.nix
··· 1 1 { stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, qtest, ounit }: 2 2 3 - let version = "0.8"; in 3 + let version = "0.10"; in 4 4 5 5 stdenv.mkDerivation { 6 - name = "ocaml-sequence-${version}"; 6 + name = "ocaml${ocaml.version}-sequence-${version}"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "c-cube"; 10 10 repo = "sequence"; 11 - rev = "${version}"; 12 - sha256 = "1y9nkz6g4plnbk1pcdbvs7f719r48zxrp3gsaxyq1vg98i9h8qr3"; 11 + rev = version; 12 + sha256 = "0pl8pv758wn8bm555i8f0fvfn2pw88w1bmzjrzrv01092d85wx1g"; 13 13 }; 14 14 15 15 buildInputs = [ ocaml findlib ocamlbuild qtest ounit ];