nixpkgs/pkgs/development/tools/misc/indent/default.nix

29 lines
703 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, texinfo }:
stdenv.mkDerivation rec {
pname = "indent";
version = "2.2.12";
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
2019-05-21 15:26:11 +00:00
sha256 = "12xvcd16cwilzglv9h7sgh4h1qqjd1h8s48ji2dla58m4706hzg7";
};
2016-08-21 04:58:21 +00:00
2019-05-21 21:27:10 +00:00
patches = [ ./darwin.patch ];
2019-05-21 15:26:11 +00:00
buildInputs = [ texinfo ];
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang
2019-05-21 21:27:10 +00:00
"-Wno-implicit-function-declaration";
2016-08-21 04:58:21 +00:00
2016-08-29 01:29:00 +00:00
hardeningDisable = [ "format" ];
meta = {
2019-05-21 15:26:11 +00:00
homepage = "https://www.gnu.org/software/indent/";
description = "A source code reformatter";
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.mmahut ];
platforms = lib.platforms.unix;
};
}