sbs: init at 1.0.0

Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
onur-ozkan
2023-09-05 17:40:58 +03:00
parent 8abcb0a31f
commit 8bc7bc50cb
2 changed files with 29 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{ lib, stdenv, fetchFromGitHub, libX11, imlib2, libXinerama, pkg-config }:
stdenv.mkDerivation rec {
pname = "sbs";
version = "1.0.0";
src = fetchFromGitHub {
owner = "onur-ozkan";
repo = "${pname}";
rev = "v${version}";
sha256 = "sha256-Zgu9W/3LwHF/fyaPlxmV/2LdxilO1tU0JY/esLnJVGY=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ imlib2 libX11 libXinerama ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Simple background setter with 200 lines of code";
homepage = "https://github.com/onur-ozkan/sbs";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ onur-ozkan ];
};
}
+2
View File
@@ -12936,6 +12936,8 @@ with pkgs;
sasview = libsForQt5.callPackage ../applications/science/misc/sasview { };
sbs = callPackage ../tools/X11/sbs { };
schemes = callPackage ../applications/misc/schemes { };
scanbd = callPackage ../tools/graphics/scanbd { };