biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / build-managers / fac / default.nix
blobc5253edb53e95929a8a7d5aa87b366ead31e8c20
1 { lib, stdenv, rustPlatform, fetchCrate, git, CoreServices }:
3 rustPlatform.buildRustPackage rec {
4   pname = "fac-build";
5   version = "0.5.4";
7   src = fetchCrate {
8     inherit version;
9     crateName = "fac";
10     sha256 = "sha256-+JJVuKUdnjJoQJ4a2EE0O6jZdVoFxPwbPgfD2LfiDPI=";
11   };
14   buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
15   cargoSha256 = "sha256-XT4FQVE+buORuZAFZK5Qnf/Fl3QSvw4SHUuCzWhxUdk=";
17   # fac includes a unit test called ls_files_works which assumes it's
18   # running in a git repo. Nix's sandbox runs cargo build outside git,
19   # so this test won't work.
20   checkFlagsArray = [ "--skip=ls_files_works" ];
22   # fac calls git at runtime, expecting it to be in the PATH,
23   # so we need to patch it to call git by absolute path instead.
24   postPatch = ''
25     substituteInPlace src/git.rs \
26         --replace 'std::process::Command::new("git")' \
27         'std::process::Command::new("${git}/bin/git")'
28     substituteInPlace tests/lib.rs \
29         --replace 'std::process::Command::new("git")' \
30         'std::process::Command::new("${git}/bin/git")'
31   '';
33   meta = with lib; {
34     broken = (stdenv.isLinux && stdenv.isAarch64);
35     description = ''
36       A build system that uses ptrace to handle dependencies automatically
37     '';
38     longDescription = ''
39       Fac is a general-purpose build system inspired by make that utilizes
40       ptrace to ensure that all dependences are enumerated and that all
41       source files are added to a (git) repo. An important feature of fac
42       is that it automatically handles dependencies, rather than either
43       complaining about them or giving an incorrect build. Currently, fac
44       only runs on linux systems, but on those systems it is incredibly
45       easy to use!
46     '';
47     homepage = "https://physics.oregonstate.edu/~roundyd/fac";
48     license = licenses.gpl2Plus;
49     platforms = platforms.unix;
50     maintainers = with maintainers; [ dpercy ];
51     mainProgram = "fac";
52   };