about summary refs log tree commit diff
path: root/pkgs/applications/editors/yi
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-05-28 05:59:57 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-05-28 05:59:57 -0700
commitaf9d10a91b5ef0518ee12b220470735076974210 (patch)
treeef7ede43a31b0b5998799f33dc8f0e8fdf254db3 /pkgs/applications/editors/yi
parentf0d6411c22d91723fef3f935adf35c7884a4dc76 (diff)
treewide: fix derivation names
Diffstat (limited to 'pkgs/applications/editors/yi')
-rw-r--r--pkgs/applications/editors/yi/wrapper.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/yi/wrapper.nix b/pkgs/applications/editors/yi/wrapper.nix
index 916f296b3fccf..e20c0a3cbca77 100644
--- a/pkgs/applications/editors/yi/wrapper.nix
+++ b/pkgs/applications/editors/yi/wrapper.nix
@@ -8,8 +8,8 @@ let
   yiEnv = haskellPackages.ghcWithPackages
     (self: [ self.yi ] ++ extraPackages self);
 in
-stdenv.mkDerivation {
-  name = "yi-custom";
+stdenv.mkDerivation rec {
+  name = "yi-custom-${version}";
   version = "0.0.0.1";
   unpackPhase = "true";
   nativeBuildInputs = [ makeWrapper ];