summary refs log tree commit diff
path: root/pkgs/applications/audio/timemachine
diff options
context:
space:
mode:
author= <anothersms@gmail.com>2016-02-12 20:49:26 +0100
committer= <anothersms@gmail.com>2016-02-12 20:49:26 +0100
commitdc82532eb8fdf86ea37852bc846bf69ba03987b3 (patch)
tree301df8aae134ae3ea4b086689fb6d07aabf4b28a /pkgs/applications/audio/timemachine
parent5deeb7b18dbc979ed4a3cb8871cf8996cd4f751e (diff)
downloadnixpkgs-dc82532eb8fdf86ea37852bc846bf69ba03987b3.tar
nixpkgs-dc82532eb8fdf86ea37852bc846bf69ba03987b3.tar.gz
nixpkgs-dc82532eb8fdf86ea37852bc846bf69ba03987b3.tar.bz2
nixpkgs-dc82532eb8fdf86ea37852bc846bf69ba03987b3.tar.lz
nixpkgs-dc82532eb8fdf86ea37852bc846bf69ba03987b3.tar.xz
nixpkgs-dc82532eb8fdf86ea37852bc846bf69ba03987b3.tar.zst
nixpkgs-dc82532eb8fdf86ea37852bc846bf69ba03987b3.zip
timemachine: init at 0.3.1
Diffstat (limited to 'pkgs/applications/audio/timemachine')
-rw-r--r--pkgs/applications/audio/timemachine/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/audio/timemachine/default.nix b/pkgs/applications/audio/timemachine/default.nix
new file mode 100644
index 00000000000..55e95c0fc15
--- /dev/null
+++ b/pkgs/applications/audio/timemachine/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, gtk2
+, libjack2, libsndfile
+}:
+
+stdenv.mkDerivation rec {
+  name = "timemachine-${version}";
+  version = "0.3.1";
+  src = fetchFromGitHub {
+    owner = "swh";
+    repo = "timemachine";
+    rev = "1966d8524d4e4c47c525473bab3b010a168adc98";
+    sha256 = "0w5alysixnvlkfl79wf7vs5wsw2vgxl3gqxxcm0zbmhjdpmjpcal";
+  };
+
+    buildInputs = [ autoconf automake pkgconfig gtk2 libjack2
+      libsndfile
+    ];
+
+  preConfigure = "./autogen.sh";
+
+  meta = {
+    description = "JACK audio recorder";
+    homepage = http://plugin.org.uk/timemachine/;
+    license = stdenv.lib.licenses.lgpl2;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.nico202 ];
+  };
+}
+