anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / dfasma / default.nix
blob78ab9c8a5f4f082092ce4b43bb6aceadbc687df8
1 { mkDerivation, lib, fetchFromGitHub, fftw, libsndfile, qtbase, qtmultimedia, qmake }:
3 let
5   reaperFork = {
6     src = fetchFromGitHub {
7       sha256 = "07m2wf2gqyya95b65gawrnr4pvc9jyzmg6h8sinzgxlpskz93wwc";
8       rev = "39053e8896eedd7b3e8a9e9a9ffd80f1fc6ceb16";
9       repo = "REAPER";
10       owner = "gillesdegottex";
11     };
12     meta = with lib; {
13      license = licenses.asl20;
14     };
15   };
17   libqaudioextra = {
18     src = fetchFromGitHub {
19       sha256 = "0m6x1qm7lbjplqasr2jhnd2ndi0y6z9ybbiiixnlwfm23sp15wci";
20       rev = "9ae051989a8fed0b2f8194b1501151909a821a89";
21       repo = "libqaudioextra";
22       owner = "gillesdegottex";
23     };
24     meta = with lib; {
25      license = licenses.gpl3Plus;
26     };
27   };
29 in mkDerivation rec {
30   pname = "dfasma";
31   version = "1.4.5";
33   src = fetchFromGitHub {
34     sha256 = "09fcyjm0hg3y51fnjax88m93im39nbynxj79ffdknsazmqw9ac0h";
35     rev = "v${version}";
36     repo = "dfasma";
37     owner = "gillesdegottex";
38   };
40   buildInputs = [ fftw libsndfile qtbase qtmultimedia ];
42   nativeBuildInputs = [ qmake ];
44   postPatch = ''
45     cp -Rv "${reaperFork.src}"/* external/REAPER
46     cp -Rv "${libqaudioextra.src}"/* external/libqaudioextra
47     substituteInPlace dfasma.pro --replace "CONFIG += file_sdif" "";
48   '';
50   meta = with lib; {
51     description = "Analyse and compare audio files in time and frequency";
52     mainProgram = "dfasma";
53     longDescription = ''
54       DFasma is free open-source software to compare audio files by time and
55       frequency. The comparison is first visual, using wavforms and spectra. It
56       is also possible to listen to time-frequency segments in order to allow
57       perceptual comparison. It is basically dedicated to analysis. Even though
58       there are basic functionalities to align the signals in time and
59       amplitude, this software does not aim to be an audio editor.
60     '';
61     homepage = "https://gillesdegottex.gitlab.io/dfasma-website/";
62     license = [ licenses.gpl3Plus reaperFork.meta.license ];
63     platforms = platforms.linux;
64   };