mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
59 lines
1.4 KiB
Nix
59 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, writeText
|
|
, fontconfig
|
|
, libX11
|
|
, libXft
|
|
, libXpm
|
|
, libXrandr
|
|
, libXrender
|
|
, conf ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "shod";
|
|
version = "2.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phillbush";
|
|
repo = "shod";
|
|
rev = "v${version}";
|
|
hash = "sha256-0bKp1BTIdYVBDVdeGnTVo76UtBxa4UbXLZihdjHS/og=";
|
|
};
|
|
|
|
buildInputs = [
|
|
fontconfig
|
|
libX11
|
|
libXft
|
|
libXpm
|
|
libXrandr
|
|
libXrender
|
|
];
|
|
|
|
postPatch =
|
|
let
|
|
configFile =
|
|
if lib.isDerivation conf || builtins.isPath conf
|
|
then conf else writeText "config.h" conf;
|
|
in
|
|
lib.optionalString (conf != null) "cp ${configFile} config.h";
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Mouse-based window manager that can tile windows inside floating containers";
|
|
longDescription = ''
|
|
shod is a multi-monitor floating reparenting X11 window manager that
|
|
supports tiled and tabbed containers. shod sets no keybindings, reads no
|
|
configuration, and works only via mouse with a given key modifier (Alt by
|
|
default) and by responding to client messages sent by the shodc utility
|
|
(shod's remote controller).
|
|
'';
|
|
homepage = "https://github.com/phillbush/shod";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ azahi ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|