Skip to content

Commit

Permalink
Update package version in nix-expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
dmalikov committed Nov 22, 2014
1 parent 7d830a2 commit 750da9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

haskellPackages.cabal.mkDerivation (self: rec {
pname = "liblastfm";
version = "0.5.0";
src = builtins.filterSource (path: type: type != "unknown") ./.;
version = "0.5.1";
src = builtins.filterSource (_: type: type != "unknown") ./.;
buildDepends = with haskellPackages; [
aeson cereal cryptoApi httpClient httpClientTls networkUri
profunctors pureMD5 semigroups text xmlConduit
Expand Down
4 changes: 2 additions & 2 deletions example/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ in

haskellPackages.cabal.mkDerivation (self: {
pname = "liblastfm-examples";
version = "0.5.0";
src = builtins.filterSource (path: type: type != "unknown") ./.;
version = "0.5.1";
src = builtins.filterSource (_: type: type != "unknown") ./.;
isLibrary = false;
isExecutable = true;
buildDepends = with haskellPackages; [
Expand Down

0 comments on commit 750da9b

Please sign in to comment.