Unverified Commit d05335b1 authored by markuskowa's avatar markuskowa Committed by GitHub
Browse files

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

sbs: init at 1.0.0
parents 246be9f9 8bc7bc50
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+27 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -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 { };