nixpkgs/pkgs/development/tools/shadered/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
859 B
Nix
Raw Normal View History

2020-10-10 11:10:41 +00:00
{ stdenv
, lib
, fetchFromGitHub
, cmake
, sfml
, glm
, python3
, glew
, pkg-config
, SDL2 }:
stdenv.mkDerivation rec {
pname = "SHADERed";
version = "1.5.6";
2020-10-10 11:10:41 +00:00
src = fetchFromGitHub {
owner = "dfranx";
repo = pname;
rev = "v${version}";
fetchSubmodules = true;
sha256 = "0drf8wwx0gcmi22jq2yyjy7ppxynfq172wqakchscm313j248fjr";
2020-10-10 11:10:41 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
SDL2
glew
glm
python3
sfml
];
patches = [
./install_path_fix.patch
];
env.NIX_CFLAGS_COMPILE = "-Wno-error=format-security";
2020-10-10 11:10:41 +00:00
meta = with lib; {
description = "Lightweight, cross-platform & full-featured shader IDE";
homepage = "https://github.com/dfranx/SHADERed";
license = with licenses; [ mit ];
maintainers = with maintainers; [ Scriptkiddi ];
broken = true;
2020-10-10 11:10:41 +00:00
};
}