Skip to content

Instantly share code, notes, and snippets.

@jeaye

jeaye/xinit.nix Secret

Last active December 30, 2017 23:28
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 jeaye/d1e977d10bd4faf57be04099b39f476a to your computer and use it in GitHub Desktop.
Save jeaye/d1e977d10bd4faf57be04099b39f476a to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "xorg-xinit";
version = "1.3.4";
src = fetchurl {
url = "https://xorg.freedesktop.org//releases/individual/app/xinit-${version}.tar.bz2";
sha256 = "75d88d7397a07e01db253163b7c7a00b249b3d30e99489f2734cac9a0c7902b3";
};
buildInputs = [
xorg.libX11 xorg.xauth xorg.xrdb xorg.xmodmap xorg.utilmacros
inetutils
];
nativeBuildInputs = [ ];
configureFlags = [ "--with-xinitdir=$out/etc/X11/xinit" ];
installPhase = ''
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment