icdiff: 1.7.3 -> 1.9.0

Also move to all-packages.nix,
because it is an application and not a library.
This commit is contained in:
Aneesh Agrawal
2017-05-17 03:12:14 -04:00
parent 450f0c93e0
commit e75297abba
3 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, buildPythonApplication }:
{ stdenv, fetchFromGitHub, pythonPackages }:
buildPythonApplication rec {
pythonPackages.buildPythonApplication rec {
name = "icdiff-${version}";
version = "1.7.3";
version = "1.9.0";
src = fetchFromGitHub {
owner = "jeffkaufman";
repo = "icdiff";
rev = "release-${version}";
sha256 = "1k7dlf2i40flsrvkma1k1vii9hsjwdmwryx65q0n0yj4frv7ky6k";
sha256 = "03gcgj3xsqasvgkr8r0q1ljbw2kd2xmfb21qpxhk9lqqm2gl11sv";
};
meta = with stdenv.lib; {