tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ocaml-x509: 0.4.0 -> 0.5.0
lukasepple
10 years ago
43a726cd
42709fb4
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
x509
default.nix
+2
-2
pkgs/development/ocaml-modules/x509/default.nix
···
1
1
{ stdenv, fetchzip, ocaml, findlib, asn1-combinators, nocrypto, ounit }:
2
2
3
3
-
let version = "0.4.0"; in
3
3
+
let version = "0.5.0"; in
4
4
5
5
stdenv.mkDerivation {
6
6
name = "ocaml-x509-${version}";
7
7
8
8
src = fetchzip {
9
9
url = "https://github.com/mirleft/ocaml-x509/archive/${version}.tar.gz";
10
10
-
sha256 = "0z4c19y625ipx2anpq25pzly1fdi3cklhk130kriybrczvmd2b29";
10
10
+
sha256 = "0i9618ph4i2yk5dvvhiqhm7wf3qmd6b795mxwff8jf856gb2gdyn";
11
11
};
12
12
13
13
buildInputs = [ ocaml findlib ounit ];