summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-01-08 18:28:22 +0100
committerBram Moolenaar <Bram@vim.org>2017-01-08 18:28:22 +0100
commit2d02839050a2557bf36dab37ccd9f92168a757d1 (patch)
treeabc07fdc4481657a1a0739f6dcc006c3cca51df5 /runtime
parent453b576ee5d32e9b8e6876712748ae01f9be68dd (diff)
patch 8.0.0157: no completion for :syntax spell and :syntax syncv8.0.0157
Problem: No command line completion for ":syntax spell" and ":syntax sync". Solution: Implement the completion. (Dominique Pelle)
Diffstat (limited to 'runtime')
0 files changed, 0 insertions, 0 deletions
s?id=1882368e8a3225f75f83efebc925ddc01b16d7d5'>pkgs/applications/audio/puddletag/default.nix
blob: 56fcdcc94cd2d17c439949c13386cd15859d014b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchFromGitHub, python3Packages, chromaprint }:

python3Packages.buildPythonApplication rec {
  pname = "puddletag";
  version = "2.0.1";

  src = fetchFromGitHub {
    owner = "keithgg";
    repo = "puddletag";
    rev = version;
    sha256 = "sha256-9l8Pc77MX5zFkOqU00HFS8//3Bzd2OMnVV1brmWsNAQ=";
  };

  sourceRoot = "source/source";

  propagatedBuildInputs = [ chromaprint ] ++ (with python3Packages; [
    configobj
    mutagen
    pyparsing
    pyqt5
  ]);

  doCheck = false;   # there are no tests

  dontStrip = true;  # we are not generating any binaries

  meta = with stdenv.lib; {
    description = "An audio tag editor similar to the Windows program, Mp3tag";
    homepage = "https://docs.puddletag.net";
    license = licenses.gpl3;
    maintainers = with maintainers; [ peterhoeg ];
    platforms = platforms.linux;
    broken = true; # Needs Qt wrapping
  };
}