3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/indent/default.nix

33 lines
932 B
Nix
Raw Normal View History

2021-11-07 01:32:41 +00:00
{ lib, stdenv, fetchurl, texinfo, buildPackages, pkgsStatic }:
stdenv.mkDerivation rec {
pname = "indent";
version = "2.2.12";
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
2019-05-21 16:26:11 +01:00
sha256 = "12xvcd16cwilzglv9h7sgh4h1qqjd1h8s48ji2dla58m4706hzg7";
};
2016-08-21 05:58:21 +01:00
2019-05-21 22:27:10 +01:00
patches = [ ./darwin.patch ];
2021-11-07 01:32:41 +00:00
makeFlags = [ "AR=${stdenv.cc.targetPrefix}ar" ];
2019-05-21 22:27:10 +01:00
strictDeps = true;
2021-11-07 01:32:41 +00:00
nativeBuildInputs = [ texinfo ];
pkgsBuildBuild = [ buildPackages.stdenv.cc ]; # needed when cross-compiling
2019-05-21 16:26:11 +01:00
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang
2019-05-21 22:27:10 +01:00
"-Wno-implicit-function-declaration";
2016-08-21 05:58:21 +01:00
2016-08-29 02:29:00 +01:00
hardeningDisable = [ "format" ];
2021-11-07 01:32:41 +00:00
passthru.tests.static = pkgsStatic.indent;
meta = {
2019-05-21 16:26:11 +01: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;
};
}