Skip to content

Commit

Permalink
default.nix: Upgrade to GHC 7.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ttuegel committed Apr 15, 2014
1 parent 9a93af1 commit 025d339
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions default.nix
@@ -1,15 +1,17 @@
{ pkgs ? (import <nixpkgs> {}) }:

let
inherit (pkgs) haskellPackages;
#inherit (pkgs) haskellPackages;
haskellPackages = pkgs.haskellPackages_ghc782;
c2hs = pkgs.haskellPackages_ghc763.c2hs; # Does not build yet with GHC 7.8
in
with haskellPackages;
cabal.mkDerivation (self: {
pname = "alsa-mixer";
version = "0.2.0";
src = ./.;
buildDepends = [ alsaCore ];
buildTools = [ c2hs ];
buildTools = [ c2hs cabalInstall ];
extraLibraries = [ pkgs.alsaLib ];
meta = {
description = "Bindings to the ALSA simple mixer API";
Expand Down

0 comments on commit 025d339

Please sign in to comment.