Files
nixpkgs/pkgs/by-name/sd/SDL_sixel/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

39 lines
777 B
Nix

{
lib,
fetchFromGitHub,
libsixel,
pkg-config,
stdenv,
}:
stdenv.mkDerivation {
pname = "SDL_sixel";
version = "0-unstable-2016-02-06";
src = fetchFromGitHub {
owner = "saitoha";
repo = "SDL1.2-SIXEL";
rev = "ab3fccac6e34260a617be511bd8c2b2beae41952";
hash = "sha256-l5eLnfV2ozAlfiTo2pr0a2BXv/pwfpX4pycw1Z7doj4=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libsixel ];
configureFlags = [
(lib.enableFeature true "video-sixel")
];
strictDeps = true;
meta = {
homepage = "https://github.com/saitoha/SDL1.2-SIXEL";
description = "SDL 1.2 patched with libsixel support";
license = lib.licenses.lgpl21;
mainProgram = "sdl-config";
maintainers = [ ];
platforms = lib.platforms.linux;
};
}