Skip to content

Instantly share code, notes, and snippets.

@K900
Created May 28, 2023 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save K900/ed8d5d6d4a849bc4335f39571e0ecf8c to your computer and use it in GitHub Desktop.
Save K900/ed8d5d6d4a849bc4335f39571e0ecf8c to your computer and use it in GitHub Desktop.
{pkgs ? import <nixpkgs> {}}: let
package = {
stdenv,
fetchFromGitLab,
autoreconfHook,
automake,
xorg-autoconf,
pkg-config,
xorg,
}:
stdenv.mkDerivation {
pname = "biblically-accurate-xeyes";
version = "unstable-2023-05-28";
src = fetchFromGitLab {
owner = "q3k";
repo = "xeyes";
rev = "biblically-accurate";
hash = "sha256-y/yYIIjCtL36MtN/4W8dqgyF8ih5grz5oJe6UKFofH8=";
domain = "gitlab.freedesktop.org";
};
nativeBuildInputs = [autoreconfHook automake xorg-autoconf pkg-config];
buildInputs = [xorg.libX11 xorg.libXi xorg.libXt xorg.libXext xorg.libXmu xorg.libXrender];
};
in
pkgs.callPackage package {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment