mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +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" ```
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "imagelol";
|
|
version = "0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MCRedstoner2004";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0978zdrfj41jsqm78afyyd1l64iki9nwjvhd8ynii1b553nn4dmd";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = [
|
|
# upstream gcc-12 compatibility fix
|
|
(fetchpatch {
|
|
name = "gcc-12.patch";
|
|
url = "https://github.com/MCredstoner2004/ImageLOL/commit/013fb1f901d88f5fd21a896bfab47c7fff0737d7.patch";
|
|
hash = "sha256-RVaG2xbUqE4CxqI2lhvug2qihT6A8vN+pIfK58CXLDw=";
|
|
includes = [ "imagelol/ImageLOL.inl" ];
|
|
# change lib/ for imagelol
|
|
stripLen = 2;
|
|
extraPrefix = "imagelol/";
|
|
})
|
|
];
|
|
|
|
# fix for case-sensitive filesystems
|
|
# https://github.com/MCredstoner2004/ImageLOL/issues/1
|
|
postPatch = ''
|
|
mv imagelol src
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace 'add_subdirectory("imagelol")' 'add_subdirectory("src")'
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ./ImageLOL $out/bin
|
|
'';
|
|
|
|
cmakeFlags = [ (lib.cmakeFeature "CMAKE_C_FLAGS" "-std=gnu90") ] ++ lib.optional (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) "-DPNG_ARM_NEON=off";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/MCredstoner2004/ImageLOL";
|
|
description = "Simple program to store a file into a PNG image";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "ImageLOL";
|
|
};
|
|
}
|