From 50275ff2ee25dd9e9fda2cb472f6a72a97410975 Mon Sep 17 00:00:00 2001 From: Ryan Trinkle Date: Sat, 5 Jul 2014 17:08:41 -0400 Subject: [PATCH] Make the version number match the cabal file's version number. This is necessary because otherwise the linker flags given at pkgs/build-support/cabal/default.nix:201-203 are ineffective, which causes the built binary to be unable to find its .so file at runtime. This appears to only affect executables that are built in the same cabal package as the library they require. --- pkgs/development/tools/haskell/ghcjs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/haskell/ghcjs/default.nix b/pkgs/development/tools/haskell/ghcjs/default.nix index be12c31b91d..65d68a5089f 100644 --- a/pkgs/development/tools/haskell/ghcjs/default.nix +++ b/pkgs/development/tools/haskell/ghcjs/default.nix @@ -11,7 +11,7 @@ cabal.mkDerivation (self: rec { pname = "ghcjs"; - version = "c9ce6b9d"; + version = "0.1.0"; src = fetchgit { url = git://github.com/ghcjs/ghcjs.git; rev = "c9ce6b9d87296b1236d5ef0f7d5236b2cedcff84";