1 { lib, stdenv, fetchFromGitHub, libX11, imlib2, libXinerama, pkg-config }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-Zgu9W/3LwHF/fyaPlxmV/2LdxilO1tU0JY/esLnJVGY=";
14 nativeBuildInputs = [ pkg-config ];
16 buildInputs = [ imlib2 libX11 libXinerama ];
18 makeFlags = [ "PREFIX=$(out)" ];
21 description = "Simple background setter with 200 lines of code";
22 homepage = "https://github.com/onur-ozkan/sbs";
23 license = licenses.gpl2Only;
24 platforms = platforms.linux;
25 maintainers = with maintainers; [ onur-ozkan ];