timemachine: init at 0.3.1

= dc82532e 5deeb7b1

+31
+29
pkgs/applications/audio/timemachine/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, gtk2 2 + , libjack2, libsndfile 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + name = "timemachine-${version}"; 7 + version = "0.3.1"; 8 + src = fetchFromGitHub { 9 + owner = "swh"; 10 + repo = "timemachine"; 11 + rev = "1966d8524d4e4c47c525473bab3b010a168adc98"; 12 + sha256 = "0w5alysixnvlkfl79wf7vs5wsw2vgxl3gqxxcm0zbmhjdpmjpcal"; 13 + }; 14 + 15 + buildInputs = [ autoconf automake pkgconfig gtk2 libjack2 16 + libsndfile 17 + ]; 18 + 19 + preConfigure = "./autogen.sh"; 20 + 21 + meta = { 22 + description = "JACK audio recorder"; 23 + homepage = http://plugin.org.uk/timemachine/; 24 + license = stdenv.lib.licenses.lgpl2; 25 + platforms = stdenv.lib.platforms.linux; 26 + maintainers = [ stdenv.lib.maintainers.nico202 ]; 27 + }; 28 + } 29 +
+2
pkgs/top-level/all-packages.nix
··· 3324 3325 tiled = qt5.callPackage ../applications/editors/tiled { }; 3326 3327 tinc = callPackage ../tools/networking/tinc { }; 3328 3329 tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };
··· 3324 3325 tiled = qt5.callPackage ../applications/editors/tiled { }; 3326 3327 + timemachine = callPackage ../applications/audio/timemachine { }; 3328 + 3329 tinc = callPackage ../tools/networking/tinc { }; 3330 3331 tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };