mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
84 lines
2.0 KiB
Nix
84 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
installShellFiles,
|
|
tcl,
|
|
libiconv,
|
|
fetchurl,
|
|
buildPackages,
|
|
zlib,
|
|
openssl,
|
|
readline,
|
|
withInternalSqlite ? true,
|
|
sqlite,
|
|
ed,
|
|
which,
|
|
tclPackages,
|
|
withJson ? true,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fossil";
|
|
version = "2.25";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.fossil-scm.org/home/tarball/version-${finalAttrs.version}/fossil-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-5O6ceBUold+yp13pET/5NB17Del1wDOzUQYLv0DS/KE=";
|
|
};
|
|
|
|
# required for build time tool `./tools/translate.c`
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
tcl
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
zlib
|
|
openssl
|
|
readline
|
|
which
|
|
ed
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isDarwin libiconv
|
|
++ lib.optional (!withInternalSqlite) sqlite;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
|
|
configureFlags =
|
|
lib.optional (!withInternalSqlite) "--disable-internal-sqlite"
|
|
++ lib.optional withJson "--json";
|
|
|
|
preBuild = ''
|
|
export USER=nonexistent-but-specified-user
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
INSTALLDIR=$out/bin make install
|
|
|
|
installManPage fossil.1
|
|
installShellCompletion --name fossil.bash tools/fossil-autocomplete.bash
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple, high-reliability, distributed software configuration management";
|
|
longDescription = ''
|
|
Fossil is a software configuration management system. Fossil is
|
|
software that is designed to control and track the development of a
|
|
software project and to record the history of the project. There are
|
|
many such systems in use today. Fossil strives to distinguish itself
|
|
from the others by being extremely simple to setup and operate.
|
|
'';
|
|
homepage = "https://www.fossil-scm.org/";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ maggesi ];
|
|
platforms = platforms.all;
|
|
mainProgram = "fossil";
|
|
};
|
|
})
|