python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / compression / imagelol / default.nix
blob187435d4eb3438c65488c0ee94f1f99e25d8003b
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "imagelol";
5   version = "0.2";
7   src = fetchFromGitHub {
8     owner = "MCRedstoner2004";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0978zdrfj41jsqm78afyyd1l64iki9nwjvhd8ynii1b553nn4dmd";
12     fetchSubmodules = true;
13   };
15   # fix for case-sensitive filesystems
16   # https://github.com/MCredstoner2004/ImageLOL/issues/1
17   postPatch = ''
18     mv imagelol src
19     substituteInPlace CMakeLists.txt \
20       --replace 'add_subdirectory("imagelol")' 'add_subdirectory("src")'
21   '';
23   nativeBuildInputs = [ cmake ];
25   installPhase = ''
26     mkdir -p $out/bin
27     cp ./ImageLOL $out/bin
28   '';
30   meta = with lib; {
31     homepage = "https://github.com/MCredstoner2004/ImageLOL";
32     description = "Simple program to store a file into a PNG image";
33     license = licenses.mit;
34     maintainers = [ maintainers.ivar ];
35     platforms = platforms.unix;
36   };