about summary refs log tree commit diff
path: root/pkgs/tools/graphics/esshader/default.nix
blob: 38bd4d1b7f0ad977fa5fa7019a52e21017cfef9d (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
35
36
37
38
39
40
41
{ stdenv, fetchFromGitHub, pkg-config, libGL, glfw, soil, lib }:

stdenv.mkDerivation {
  pname = "esshader";
  version = "unstable-2020-08-09";

  src = fetchFromGitHub {
    owner = "cmcsun";
    repo = "esshader";
    rev = "506eb02f3de52d3d1f4d81ac9ee145655216dee5";
    sha256 = "sha256-euxJw7CqOwi6Ndzalps37kDr5oOIL3tZICCfmxsujfk=";
  };

  postPatch = ''
    substituteInPlace config.mk \
      --replace "-lGLESv2" "-lGL -lGLESv2"
  '';

  nativeBuildInputs = [
    pkg-config
  ];
  buildInputs = [
    libGL glfw soil
  ];

  installPhase = ''
    mkdir -p $out/bin
    cp -a esshader $out/bin/
  '';

  meta = with lib; {
    description = "Offline ShaderToy-compatible GLSL shader viewer using OpenGL ES 2.0";
    homepage = "https://github.com/cmcsun/esshader";
    license = licenses.mit;
    maintainers = with maintainers; [ astro ];
    platforms = lib.platforms.unix;
    # never built on aarch64-darwin, x86_64-darwin since first introduction in nixpkgs
    broken = stdenv.isDarwin;
    mainProgram = "esshader";
  };
}