summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorBas van Dijk <v.dijk.bas@gmail.com>2018-09-23 22:48:27 +0200
committerBas van Dijk <v.dijk.bas@gmail.com>2018-09-23 22:50:04 +0200
commit9b67908e6799aeb1665f6424f2c3df5352d22aa0 (patch)
tree269bf6655bd470fceef4c4ca9d816d16748fd7ce /pkgs/development/haskell-modules
parent8346ddd9b63cb4c5a864f8dd272ba4a8dd24ed7a (diff)
downloadnixpkgs-9b67908e6799aeb1665f6424f2c3df5352d22aa0.tar
nixpkgs-9b67908e6799aeb1665f6424f2c3df5352d22aa0.tar.gz
nixpkgs-9b67908e6799aeb1665f6424f2c3df5352d22aa0.tar.bz2
nixpkgs-9b67908e6799aeb1665f6424f2c3df5352d22aa0.tar.lz
nixpkgs-9b67908e6799aeb1665f6424f2c3df5352d22aa0.tar.xz
nixpkgs-9b67908e6799aeb1665f6424f2c3df5352d22aa0.tar.zst
nixpkgs-9b67908e6799aeb1665f6424f2c3df5352d22aa0.zip
haskellPackages.Euterpea: fix build by using PortMidi == 0.2
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index ec0a3cf34e5..ef4e6c8b425 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1139,4 +1139,14 @@ self: super: {
   # Can be removed once vinyl >= 0.10 is in the LTS.
   Frames = super.Frames.override { vinyl = super.vinyl_0_10_0; };
 
+  # https://github.com/Euterpea/Euterpea2/pull/22
+  Euterpea = overrideSrc super.Euterpea {
+    src = pkgs.fetchFromGitHub {
+      owner = "Euterpea";
+      repo = "Euterpea2";
+      rev = "6f49b790adfb8b65d95a758116c20098fb0cd34c";
+      sha256 = "0qz1svb96n42nmig16vyphwxas34hypgayvwc91ri7w7xd6yi1ba";
+    };
+  };
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super