Merge pull request #175595 from astro/esshader

esshader: init at unstable-2020-08-09
This commit is contained in:
Sandro 2022-06-09 09:52:52 +02:00 committed by GitHub
commit 4a5549783e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ 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;
};
}

View file

@ -5670,6 +5670,8 @@ with pkgs;
escrotum = callPackage ../tools/graphics/escrotum { };
esshader = callPackage ../tools/graphics/esshader { };
etcher = callPackage ../tools/misc/etcher {
electron = electron_12;
};