blob: 40138dc2d6619a7f7cd31dae71b524ee7565e2c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
stdenv,
fetchFromGitHub,
lib,
autoreconfHook,
help2man,
}:
stdenv.mkDerivation {
pname = "libiff";
version = "0-unstable-2024-03-02";
src = fetchFromGitHub {
owner = "svanderburg";
repo = "libiff";
rev = "b5f542a83c824f26e0816770c9a17c22bd388606";
sha256 = "sha256-Arh3Ihd5TWg5tdemodrxz2EDxh/hwz9b2/AvrTONFy8=";
};
nativeBuildInputs = [
autoreconfHook
help2man
];
meta = with lib; {
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 maintainers; [ _414owen ];
platforms = platforms.all;
license = licenses.mit;
};
}
|