mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +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" ```
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ lib
|
|
, acl
|
|
, attr
|
|
, autoreconfHook
|
|
, bzip2
|
|
, fetchFromGitea
|
|
, libburn
|
|
, libcdio
|
|
, libiconv
|
|
, libisofs
|
|
, pkg-config
|
|
, readline
|
|
, stdenv
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libisoburn";
|
|
version = "1.5.6";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "dev.lovelyhq.com";
|
|
owner = "libburnia";
|
|
repo = "libisoburn";
|
|
rev = "release-${finalAttrs.version}";
|
|
hash = "sha256-16qNVlWFVXfvbte5EgP/u193wK2GV/r22hVX0SZWr+0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
bzip2
|
|
libcdio
|
|
libiconv
|
|
readline
|
|
zlib
|
|
libburn
|
|
libisofs
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
acl
|
|
attr
|
|
];
|
|
|
|
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
|
acl
|
|
];
|
|
|
|
outputs = [ "out" "lib" "dev" "info" "man" ];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "http://libburnia-project.org/";
|
|
description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD";
|
|
changelog = "https://dev.lovelyhq.com/libburnia/libisoburn/src/tag/${finalAttrs.src.rev}/ChangeLog";
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "osirrox";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
inherit (libisofs.meta) platforms;
|
|
};
|
|
})
|