diff --git a/README b/README
--- a/README
+++ b/README
@@ -4,7 +4,7 @@
 A simple-minded [haskell][hs] [supercollider][sc3] auditioner for
 music structures.
 
-© [rohan drape][rd], 2010-2012, [gpl][gpl].
+© [rohan drape][rd], 2010-2013, [gpl][gpl].
 
 [hs]: http://haskell.org/
 [sc3]: http://audiosynth.com/
diff --git a/Sound/SC3/Auditor.hs b/Sound/SC3/Auditor.hs
--- a/Sound/SC3/Auditor.hs
+++ b/Sound/SC3/Auditor.hs
@@ -1,7 +1,7 @@
 -- | Auditor functions common to all sample libraries.
 module Sound.SC3.Auditor where
 
-import Data.List
+import Data.List {- base -}
 import Sound.OSC {- hosc -}
 import Sound.SC3 {- hsc3 -}
 
@@ -76,7 +76,7 @@
   in map f
 
 p_osc :: P -> Bundle
-p_osc (t,c) = bundle (NTPr t) (chd_osc c)
+p_osc (t,c) = bundle t (chd_osc c)
 
 -- | Generate set of 'OSC' given 'NC', 'Sample_Loader' and 'PP'.
 pp_nrt :: NC -> Sample_Loader -> PP -> NRT
@@ -84,9 +84,9 @@
     let b = bundle
         ix = pp_indices pp
         group_zero = g_new [(1, AddToTail, 0)]
-        sc_init = let h = b (NTPr 0) [group_zero,instr_osc nc]
-                  in h : map (b (NTPr 0) . return) (ld ix)
-        sc_end = [b (NTPr (pp_duration pp + 12)) [g_freeAll [1]]]
+        sc_init = let h = b 0 [group_zero,instr_osc nc]
+                  in h : map (b 0 . return) (ld ix)
+        sc_end = [b (pp_duration pp + 12) [g_freeAll [1]]]
   in NRT (sc_init ++ map p_osc pp ++ sc_end)
 
 -- | Variant of 'pp_osc' that writes @NRT@ score to named file using
diff --git a/hsc3-auditor.cabal b/hsc3-auditor.cabal
--- a/hsc3-auditor.cabal
+++ b/hsc3-auditor.cabal
@@ -1,10 +1,10 @@
 Name:              hsc3-auditor
-Version:           0.12
+Version:           0.14
 Synopsis:          Haskell SuperCollider Auditor
 Description:       A simple-minded auditioner for music structures.
 License:           GPL
 Category:          Sound
-Copyright:         (c) Rohan Drape, 2010-2012
+Copyright:         (c) Rohan Drape, 2010-2013
 Author:            Rohan Drape
 Maintainer:        rd@slavepianos.org
 Stability:         Experimental
@@ -18,9 +18,9 @@
 Library
   Build-Depends:   base == 4.*,
                    filepath,
-                   hmt == 0.12.*,
-                   hosc == 0.12.*,
-                   hsc3 == 0.12.*
+                   hmt == 0.14.*,
+                   hosc == 0.14.*,
+                   hsc3 == 0.14.*
   GHC-Options:     -Wall -fwarn-tabs
   Exposed-modules: Sound.SC3.Auditor
                    Sound.SC3.Auditor.PF
