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.
This commit is contained in:
Ryan Trinkle 2014-07-05 17:08:41 -04:00
parent 4e7aa4be87
commit 50275ff2ee

View File

@ -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";