mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
102 lines
2.3 KiB
Nix
102 lines
2.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, cpm-cmake
|
|
, git
|
|
, git2-cpp
|
|
, cacert
|
|
, boost179
|
|
, icu
|
|
, libarchive
|
|
, libgit2
|
|
, lz4
|
|
, mitama-cpp-result
|
|
, ninja
|
|
, openssl_3
|
|
, package-project-cmake
|
|
, spdlog
|
|
}:
|
|
|
|
let
|
|
glob = fetchFromGitHub {
|
|
owner = "p-ranav";
|
|
repo = "glob";
|
|
rev = "v0.0.1";
|
|
sha256 = "sha256-2y+a7YFBiYX8wbwCCWw1Cm+SFoXGB3ZxLPi/QdZhcdw=";
|
|
};
|
|
|
|
structopt = fetchFromGitHub {
|
|
owner = "p-ranav";
|
|
repo = "structopt";
|
|
rev = "e9722d3c2b52cf751ebc1911b93d9649c4e365cc";
|
|
sha256 = "sha256-jIfKUyY2QQ2/donywwlz65PY8u7xODGoG6SlNtUhwkg=";
|
|
};
|
|
|
|
toml11 = fetchFromGitHub {
|
|
owner = "ToruNiina";
|
|
repo = "toml11";
|
|
rev = "9086b1114f39a8fb10d08ca704771c2f9f247d02";
|
|
sha256 = "sha256-fHUElHO4ckNQq7Q88GdbHGxfaAvWoWtGB0eD9y2MnLo=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "poac";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "poacpm";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-JgGa7lomDvZG5HLxGJMALcezjnZprexJDTxyTUjLetg=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
mkdir -p ${placeholder "out"}/share/cpm
|
|
cp ${cpm-cmake}/share/cpm/CPM.cmake ${placeholder "out"}/share/cpm/CPM_0.35.1.cmake
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DPOAC_BUILD_TESTING=OFF"
|
|
"-DCPM_SOURCE_CACHE=${placeholder "out"}/share"
|
|
"-DFETCHCONTENT_SOURCE_DIR_GIT2-CPP=${git2-cpp.src}"
|
|
"-DFETCHCONTENT_SOURCE_DIR_GLOB=${glob}"
|
|
"-DFETCHCONTENT_SOURCE_DIR_PACKAGEPROJECT.CMAKE=${package-project-cmake.src}"
|
|
"-DFETCHCONTENT_SOURCE_DIR_MITAMA-CPP-RESULT=${mitama-cpp-result.src}"
|
|
"-DFETCHCONTENT_SOURCE_DIR_NINJA=${ninja.src}"
|
|
"-DFETCHCONTENT_SOURCE_DIR_STRUCTOPT=${structopt}"
|
|
"-DFETCHCONTENT_SOURCE_DIR_TOML11=${toml11}"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake git cacert ];
|
|
buildInputs = [
|
|
(boost179.override {
|
|
enableShared = stdenv.hostPlatform.isDarwin;
|
|
enableStatic = !stdenv.hostPlatform.isDarwin;
|
|
})
|
|
git2-cpp
|
|
glob
|
|
package-project-cmake
|
|
mitama-cpp-result
|
|
ninja
|
|
structopt
|
|
toml11
|
|
icu
|
|
libarchive
|
|
libgit2
|
|
lz4
|
|
openssl_3
|
|
spdlog
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://poac.pm";
|
|
description = "Package Manager for C++";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
# error: call to 'format' is ambiguous
|
|
broken = true; # last successful build 2023-12-31
|
|
};
|
|
}
|