commit
d05335b12e
3 changed files with 35 additions and 0 deletions
|
@ -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
pkgs/tools/X11/sbs/default.nix
Normal file
27
pkgs/tools/X11/sbs/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue