From 24b64aab0f56c930d62f5c6313013253e6bebef5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 26 Sep 2016 08:40:08 +0200 Subject: [PATCH] structured-haskell-mode: use output from "git describe" to identify the version --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c28e438a6ebf..073643bccb88 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -767,8 +767,8 @@ self: super: { # Fine-tune the build. structured-haskell-mode = (overrideCabal super.structured-haskell-mode (drv: { - # Bump version to latest git-release to get support for Emacs 25.x. - version = "20160926-git"; + # Bump version to latest git-version to get support for Emacs 25.x. + version = "1.0.20-28-g1ffb4db"; src = pkgs.fetchFromGitHub { owner = "chrisdone"; repo = "structured-haskell-mode";