mwic: init at 0.7.2 (#23183)

* mwic: init at 0.7.2

* mwic: use makefile instead
This commit is contained in:
Matthias Beyer 2017-02-26 09:43:39 +01:00 committed by Jörg Thalheim
parent a78b801c54
commit bfe1d74eb8
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv, fetchurl, pythonPackages }:
stdenv.mkDerivation rec {
version = "0.7.2";
name = "mwic-${version}";
src = fetchurl {
url = "https://github.com/jwilk/mwic/releases/download/${version}/${name}.tar.gz";
sha256 = "1linpagf0i0ggicq02fcvz4rpx7xdpy80ys49wx7fnmz7f3jc6jy";
};
makeFlags=["PREFIX=\${out}"];
nativeBuildInputs = [
pythonPackages.wrapPython
];
propagatedBuildInputs = with pythonPackages; [ pyenchant regex ];
postFixup = ''
buildPythonPath "$out"
'';
meta = with stdenv.lib; {
homepage = http://jwilk.net/software/mwic;
description = "spell-checker that groups possible misspellings and shows them in their contexts";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
};
}

View File

@ -14449,6 +14449,10 @@ with pkgs;
withSidebar = true;
};
mwic = callPackage ../applications/misc/mwic {
pythonPackages = python3Packages;
};
neomutt = callPackage ../applications/networking/mailreaders/neomutt { };
natron = callPackage ../applications/video/natron { };