nixpkgs/pkgs/development/tools/misc/indent/default.nix
Joachim Fasting e524debaf0 indent: delete redundant preBuild
Builds fine for me without it.  Also use https homepage url.
2016-03-17 14:18:30 +01:00

17 lines
384 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "indent-2.2.10";
src = fetchurl {
url = "mirror://gnu/indent/${name}.tar.gz";
sha256 = "0f9655vqdvfwbxvs1gpa7py8k1z71aqh8hp73f65vazwbfz436wa";
};
meta = {
homepage = https://www.gnu.org/software/indent/;
description = "A source code reformatter";
license = stdenv.lib.licenses.gpl3Plus;
};
}