We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a197a46 commit cab5611Copy full SHA for cab5611
1 file changed
pkgs/development/ocaml-modules/mimic/default.nix
@@ -12,14 +12,14 @@
12
bigstringaf,
13
}:
14
15
-buildDunePackage rec {
+buildDunePackage (finalAttrs: {
16
pname = "mimic";
17
version = "0.0.9";
18
19
minimalOCamlVersion = "4.08";
20
21
src = fetchurl {
22
- url = "https://github.com/dinosaure/mimic/releases/download/${version}/mimic-${version}.tbz";
+ url = "https://github.com/dinosaure/mimic/releases/download/${finalAttrs.version}/mimic-${finalAttrs.version}.tbz";
23
hash = "sha256-lU3xzrVIqSKnhUQIhaXRamr39zXWw3DtNdM5EUtp4p8=";
24
};
25
@@ -44,4 +44,4 @@ buildDunePackage rec {
44
homepage = "https://github.com/mirage/ocaml-git";
45
maintainers = [ lib.maintainers.sternenseemann ];
46
47
-}
+})
0 commit comments