Skip to content

Commit

Permalink
haskellPackages.hledger-diff: 0.2.0.6 -> 0.2.0.7
Browse files Browse the repository at this point in the history
Currently hledger-diff is broken because of the hledger-lib version
bump.
  • Loading branch information
gebner committed Jan 7, 2017
1 parent b86c663 commit da9e906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/haskell-modules/hackage-packages.nix
Expand Up @@ -91117,8 +91117,8 @@ self: {
({ mkDerivation, base, hledger-lib, text, time }:
mkDerivation {
pname = "hledger-diff";
version = "0.2.0.6";
sha256 = "0ef38d60055fb632f3a686b5ce8aee0af5637e51b17d4c5a27764dd485c52b75";
version = "0.2.0.7";
sha256 = "1x7ngm0h9hsbf4p8vx1h4z1w9hlqkqfa39v2dvmlxrcx6rs8dzsl";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base hledger-lib text time ];
Expand Down

2 comments on commit da9e906

@domenkozar
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$ head pkgs/development/haskell-modules/hackage-packages.nix 
/* hackage-packages.nix is an auto-generated file -- DO NOT EDIT! */

You should instead modify pkgs/development/haskell-modules/configuration-common.nix

@gebner
Copy link
Member Author

@gebner gebner commented on da9e906 Jan 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is only temporary until the next hackage-packages.nix update. Then this change should be picked up by hackage2nix as it is already on hackage.

The policy of only including the latest version of Haskell packages makes life a bit stressful for package maintainers. You've only got a few days to update your package's version bounds after one of your dependencies releases a new major version, or the nixpkgs derivation breaks... In this case I only noticed it after the hackage2nix update.

Please sign in to comment.