Merge pull request #253403 from onur-ozkan/init-sbs

sbs: init at 1.0.0
This commit is contained in:
markuskowa 2023-09-05 18:18:16 +02:00 committed by GitHub
commit d05335b12e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 0 deletions

View file

@ -12885,6 +12885,12 @@
githubId = 915970;
name = "Austin Platt";
};
onur-ozkan = {
name = "Onur Ozkan";
email = "contact@onurozkan.dev";
github = "onur-ozkan";
githubId = 39852038;
};
ony = {
name = "Mykola Orliuk";
email = "virkony@gmail.com";

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 ];
};
}

View file

@ -12938,6 +12938,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 { };