2022-06-16 17:23:12 +00:00
|
|
|
{ lib
|
|
|
|
, bash
|
|
|
|
, coreutils
|
|
|
|
, fetchFromGitHub
|
|
|
|
, resholve
|
2022-10-21 18:38:19 +00:00
|
|
|
, xorg
|
2022-06-16 17:23:12 +00:00
|
|
|
}:
|
2021-07-14 22:03:04 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
resholve.mkDerivation rec {
|
2021-07-14 22:03:04 +00:00
|
|
|
pname = "sx";
|
|
|
|
version = "2.1.7";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "earnestly";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0xv15m30nhcknasqiybj5wwf7l91q4a4jf6xind8x5x00c6br6nl";
|
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
solutions = {
|
|
|
|
sx = {
|
|
|
|
scripts = [ "bin/sx" ];
|
|
|
|
interpreter = "${bash}/bin/sh";
|
|
|
|
inputs = [
|
|
|
|
coreutils
|
2022-10-21 18:38:19 +00:00
|
|
|
xorg.xauth
|
|
|
|
xorg.xorgserver
|
2022-06-16 17:23:12 +00:00
|
|
|
];
|
|
|
|
execer = [
|
2022-10-21 18:38:19 +00:00
|
|
|
"cannot:${xorg.xorgserver}/bin/Xorg"
|
2022-06-16 17:23:12 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple alternative to both xinit and startx for starting a Xorg server";
|
|
|
|
homepage = "https://github.com/earnestly/sx";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2022-06-16 17:23:12 +00:00
|
|
|
maintainers = with maintainers; [ figsoda thiagokokada ];
|
2021-07-14 22:03:04 +00:00
|
|
|
};
|
|
|
|
}
|