summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocamlnet
diff options
context:
space:
mode:
authorKirill Boltaev <aske@fmap.me>2016-10-05 11:32:30 +0400
committervbgl <vbgl@users.noreply.github.com>2016-10-05 09:32:30 +0200
commit3e646865f4eb5216117dc49f3c9fb4a02ad2313b (patch)
tree9418314db159ba326550bf4af9df1e7aa9a75332 /pkgs/development/ocaml-modules/ocamlnet
parent916364af72f15e7635387889d883b605948b1f1d (diff)
downloadnixpkgs-3e646865f4eb5216117dc49f3c9fb4a02ad2313b.tar
nixpkgs-3e646865f4eb5216117dc49f3c9fb4a02ad2313b.tar.gz
nixpkgs-3e646865f4eb5216117dc49f3c9fb4a02ad2313b.tar.bz2
nixpkgs-3e646865f4eb5216117dc49f3c9fb4a02ad2313b.tar.lz
nixpkgs-3e646865f4eb5216117dc49f3c9fb4a02ad2313b.tar.xz
nixpkgs-3e646865f4eb5216117dc49f3c9fb4a02ad2313b.tar.zst
nixpkgs-3e646865f4eb5216117dc49f3c9fb4a02ad2313b.zip
treewide: use ocaml.version (#19192)
Diffstat (limited to 'pkgs/development/ocaml-modules/ocamlnet')
-rw-r--r--pkgs/development/ocaml-modules/ocamlnet/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/ocamlnet/default.nix b/pkgs/development/ocaml-modules/ocamlnet/default.nix
index e67eebeb7a0..73351ea633f 100644
--- a/pkgs/development/ocaml-modules/ocamlnet/default.nix
+++ b/pkgs/development/ocaml-modules/ocamlnet/default.nix
@@ -1,10 +1,6 @@
 { stdenv, fetchurl, pkgconfig, ncurses, ocaml, findlib, ocaml_pcre, camlzip
 , gnutls, nettle }:
 
-let
-  ocaml_version = (builtins.parseDrvName ocaml.name).version;
-in
-
 stdenv.mkDerivation {
   name = "ocamlnet-4.1.1";
 
@@ -27,7 +23,7 @@ stdenv.mkDerivation {
       -enable-pcre
       -disable-gtk2
       -with-nethttpd
-      -datadir $out/lib/ocaml/${ocaml_version}/ocamlnet
+      -datadir $out/lib/ocaml/${ocaml.version}/ocamlnet
     )
   '';