uncrustify: 0.67 -> 0.70.1

It depends on python now (only build time).
This commit is contained in:
Bjørn Forsman 2019-11-27 20:38:17 +01:00
parent 8ef9f8b893
commit b345649811

View file

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, cmake }:
{ stdenv, fetchFromGitHub, cmake, python }:
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "uncrustify";
version = "0.67";
version = "0.70.1";
src = fetchFromGitHub {
owner = product;
repo = product;
rev = name;
sha256 = "0hf8c93aj1hjg6cc77x6p7nf7ddp8mn4b6a9gpcrvmx8w81afpd3";
sha256 = "0zr3vxhd947zdvwccw3cj0vsriaawcpfjq3x94v9887hsi8fk87b";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake python ];
enableParallelBuilding = true;