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
48 lines
940 B
Nix
48 lines
940 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libpng,
|
|
libjpeg,
|
|
giflib,
|
|
perl,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "metapixel";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "schani";
|
|
repo = "metapixel";
|
|
rev = "98ee9daa093b6c334941242e63f90b1c2876eb4f";
|
|
fetchSubmodules = true;
|
|
sha256 = "0r7n3a6bvcxkbpda4mwmrpicii09iql5z69nkjqygkwxw7ny3309";
|
|
};
|
|
|
|
makeFlags = [ "metapixel" ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
libpng
|
|
libjpeg
|
|
giflib
|
|
perl
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp metapixel $out/bin/metapixel
|
|
cp metapixel-prepare $out/bin/metapixel-prepare
|
|
cp metapixel-sizesort $out/bin/metapixel-sizesort
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/schani/metapixel";
|
|
description = "Tool for generating photomosaics";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ dandellion ];
|
|
};
|
|
}
|