mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 17:07:46 +00:00
screenconfig: init at 0.1.0
Co-authored-by: Leah Amelia Chen <github@acc.pluie.me>
This commit is contained in:
parent
c77dab3ae5
commit
ed9d230795
40
pkgs/by-name/sc/screenconfig/package.nix
Normal file
40
pkgs/by-name/sc/screenconfig/package.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
python3,
|
||||
fetchFromGitHub,
|
||||
xrandr,
|
||||
srandrd,
|
||||
feh,
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "screenconfig";
|
||||
version = "0.1.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jceb";
|
||||
repo = "screenconfig";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-X1Mz8UbOOW/4LM9IZoG/kbwv2G0EppTsacKapQMChkc=";
|
||||
};
|
||||
build-system = [ python3.pkgs.setuptools ];
|
||||
dependencies = with python3.pkgs; [
|
||||
toml
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
xrandr
|
||||
srandrd
|
||||
feh
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Automatic configuration of connected screens/monitors";
|
||||
homepage = "https://github.com/jceb/screenconfig";
|
||||
platforms = lib.platforms.linux;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jceb ];
|
||||
mainProgram = "screenconfig";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user