summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-06-27 00:17:52 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-06-27 00:17:52 -0700
commit729725501922fad5955b86bf0e06a2f6fee659f6 (patch)
tree0c1035bd915dafc8c7d8635df1e865cff7689422 /pkgs/development/haskell-modules
parent8ce4cb4de81fd2b79d8e99e74be4e4a1c481f030 (diff)
downloadnixlib-729725501922fad5955b86bf0e06a2f6fee659f6.tar
nixlib-729725501922fad5955b86bf0e06a2f6fee659f6.tar.gz
nixlib-729725501922fad5955b86bf0e06a2f6fee659f6.tar.bz2
nixlib-729725501922fad5955b86bf0e06a2f6fee659f6.tar.lz
nixlib-729725501922fad5955b86bf0e06a2f6fee659f6.tar.xz
nixlib-729725501922fad5955b86bf0e06a2f6fee659f6.tar.zst
nixlib-729725501922fad5955b86bf0e06a2f6fee659f6.zip
Convert all jack references to libjack2
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/hackage-packages.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index cbc01eb3f8d4..2bf10c605af3 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -77147,7 +77147,7 @@ self: {
 
   "jack" = callPackage
     ({ mkDerivation, array, base, bytestring, enumset, event-list
-     , explicit-exception, jack2, midi, non-negative, transformers, unix
+     , explicit-exception, libjack2, midi, non-negative, transformers, unix
      }:
      mkDerivation {
        pname = "jack";
@@ -77159,25 +77159,25 @@ self: {
          array base bytestring enumset event-list explicit-exception midi
          non-negative transformers unix
        ];
-       pkgconfigDepends = [ jack2 ];
+       pkgconfigDepends = [ libjack2 ];
        homepage = "http://www.haskell.org/haskellwiki/JACK";
        description = "Bindings for the JACK Audio Connection Kit";
        license = "GPL";
-     }) { inherit (pkgs) jack2;};
+     }) { inherit (pkgs) libjack2;};
 
   "jack-bindings" = callPackage
-    ({ mkDerivation, base, c2hs, jack2, mtl }:
+    ({ mkDerivation, base, c2hs, libjack2, mtl }:
      mkDerivation {
        pname = "jack-bindings";
        version = "0.1.1";
        sha256 = "1gmz2qiz7wzydj0rhswbfhwi0zbdcbps29l1lryzqxm8chfc9mbm";
        buildDepends = [ base mtl ];
        buildTools = [ c2hs ];
-       pkgconfigDepends = [ jack2 ];
+       pkgconfigDepends = [ libjack2 ];
        description = "DEPRECATED Bindings to the JACK Audio Connection Kit";
        license = stdenv.lib.licenses.mit;
        hydraPlatforms = stdenv.lib.platforms.none;
-     }) { inherit (pkgs) jack2;};
+     }) { inherit (pkgs) libjack2;};
 
   "jackminimix" = callPackage
     ({ mkDerivation, base, hosc }: