mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ 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.hostPlatform.isDarwin;
|
|
mainProgram = "esshader";
|
|
};
|
|
}
|