Unverified Commit 2b1aa3b7 authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

ocamlPackages.uutf: set pname instead of name (#484532)

parents 53be797f e12c3982
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -17,8 +17,9 @@
      throw "uutf is not available with OCaml ${ocaml.version}",
}:

stdenv.mkDerivation {
  name = "ocaml${ocaml.version}-uutf-${version}";
stdenv.mkDerivation (finalAttrs: {
  name = "ocaml${ocaml.version}-${finalAttrs.pname}-${finalAttrs.version}";
  pname = "uutf";
  inherit version;

  src = fetchurl {
@@ -56,4 +57,4 @@ stdenv.mkDerivation {
    mainProgram = "utftrip";
    inherit (ocaml.meta) platforms;
  };
}
})