4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
838 B
Nix
31 lines
838 B
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, bc, xorgserver, xpra, xrandr }:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "git-2018-06-03";
|
|
pname = "run-scaled";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kaueraal";
|
|
repo = "run_scaled";
|
|
rev = "fa71b3c17e627a96ff707ad69f1def5361f2245c";
|
|
sha256 = "1ma4ax7ydq4xvyzrc4zapihmf7v3d9zl9mbi8bgpps7nlgz544ys";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp run_scaled $out/bin
|
|
wrapProgram $out/bin/run_scaled --prefix PATH ":" \
|
|
${stdenv.lib.makeBinPath [ bc xorgserver xpra xrandr ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Run an X application scaled via xpra";
|
|
homepage = "https://github.com/kaueraal/run_scaled";
|
|
maintainers = [ maintainers.snaar ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|