mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
35 lines
857 B
Nix
35 lines
857 B
Nix
{
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
lib,
|
|
autoreconfHook,
|
|
help2man,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "libiff";
|
|
version = "0-unstable-2024-03-02";
|
|
src = fetchFromGitHub {
|
|
owner = "svanderburg";
|
|
repo = "libiff";
|
|
rev = "b5f542a83c824f26e0816770c9a17c22bd388606";
|
|
hash = "sha256-Arh3Ihd5TWg5tdemodrxz2EDxh/hwz9b2/AvrTONFy8=";
|
|
};
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
help2man
|
|
];
|
|
meta = {
|
|
description = "Parser for the Interchange File Format (IFF)";
|
|
longDescription = ''
|
|
libiff is a portable, extensible parser library implemented in
|
|
ANSI C, for EA-IFF 85: Electronic Arts' Interchange File Format
|
|
(IFF).
|
|
'';
|
|
homepage = "https://github.com/svanderburg/libiff";
|
|
maintainers = with lib.maintainers; [ _414owen ];
|
|
platforms = lib.platforms.all;
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|