summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/uuidm
diff options
context:
space:
mode:
authorThéo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2018-11-11 18:04:27 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2018-11-12 17:25:18 +0000
commit208aedb9715f7c682d1617449298d73f3077222d (patch)
treee93607054814f933386e843b5c7b27cb0fd09f07 /pkgs/development/ocaml-modules/uuidm
parent3ec657ab0c4bc271e685f9be025b2c17df83ba22 (diff)
downloadnixpkgs-208aedb9715f7c682d1617449298d73f3077222d.tar
nixpkgs-208aedb9715f7c682d1617449298d73f3077222d.tar.gz
nixpkgs-208aedb9715f7c682d1617449298d73f3077222d.tar.bz2
nixpkgs-208aedb9715f7c682d1617449298d73f3077222d.tar.lz
nixpkgs-208aedb9715f7c682d1617449298d73f3077222d.tar.xz
nixpkgs-208aedb9715f7c682d1617449298d73f3077222d.tar.zst
nixpkgs-208aedb9715f7c682d1617449298d73f3077222d.zip
ocamlPackages.*: remove unnecessary unpackCmd
Diffstat (limited to 'pkgs/development/ocaml-modules/uuidm')
-rw-r--r--pkgs/development/ocaml-modules/uuidm/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/uuidm/default.nix b/pkgs/development/ocaml-modules/uuidm/default.nix
index b295143c0bc..0c45e6c8af1 100644
--- a/pkgs/development/ocaml-modules/uuidm/default.nix
+++ b/pkgs/development/ocaml-modules/uuidm/default.nix
@@ -2,14 +2,12 @@
 
 stdenv.mkDerivation rec {
   version = "0.9.6";
-  name = "uuidm-${version}"; 
+  name = "uuidm-${version}";
   src = fetchurl {
     url = "http://erratique.ch/software/uuidm/releases/uuidm-${version}.tbz";
     sha256 = "0hz4fdx0x16k0pw9995vkz5d1hmzz6b16wck9li399rcbfnv5jlc";
   };
 
-  unpackCmd = "tar -xf $curSrc";
-
   buildInputs = [ ocaml findlib ocamlbuild topkg cmdliner ];
 
   inherit (topkg) buildPhase installPhase;