commit
e0b6b0a6d1
@ -18,23 +18,11 @@
|
|||||||
|
|
||||||
grimshot = stdenv.mkDerivation rec {
|
grimshot = stdenv.mkDerivation rec {
|
||||||
pname = "grimshot";
|
pname = "grimshot";
|
||||||
version = "2020-05-08";
|
version = sway-unwrapped.version;
|
||||||
rev = "b1d08db5f5112ab562f89564825e3e791b0682c4";
|
|
||||||
|
|
||||||
# master has new fixes and features, and a man page
|
src = sway-unwrapped.src;
|
||||||
# after sway-1.5 these may be switched to sway-unwrapped.src
|
|
||||||
bsrc = fetchurl {
|
|
||||||
url = "https://raw.githubusercontent.com/swaywm/sway/${rev}/contrib/grimshot";
|
|
||||||
sha256 = "1awzmzkib8a7q5s78xyh8za03lplqfpbasqp3lidqqmjqs882jq9";
|
|
||||||
};
|
|
||||||
|
|
||||||
msrc = fetchurl {
|
|
||||||
url = "https://raw.githubusercontent.com/swaywm/sway/${rev}/contrib/grimshot.1";
|
|
||||||
sha256 = "191xxjfhf61gkxl3b0f694h0nrwd7vfnyp5afk8snhhr6q7ia4jz";
|
|
||||||
};
|
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
dontUnpack = true;
|
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
@ -42,9 +30,9 @@ grimshot = stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
installManPage ${msrc}
|
installManPage contrib/grimshot.1
|
||||||
|
|
||||||
install -Dm 0755 ${bsrc} $out/bin/grimshot
|
install -Dm 0755 contrib/grimshot $out/bin/grimshot
|
||||||
wrapProgram $out/bin/grimshot --set PATH \
|
wrapProgram $out/bin/grimshot --set PATH \
|
||||||
"${stdenv.lib.makeBinPath [
|
"${stdenv.lib.makeBinPath [
|
||||||
sway-unwrapped
|
sway-unwrapped
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
{ stdenv, fetchFromGitHub, makeWrapper
|
{ stdenv, fetchFromGitHub, makeWrapper
|
||||||
, meson, ninja
|
, meson, ninja, pkg-config, wayland, scdoc
|
||||||
, pkgconfig, scdoc
|
, libxkbcommon, pcre, json_c, dbus, libevdev
|
||||||
, wayland, libxkbcommon, pcre, json_c, dbus, libevdev
|
|
||||||
, pango, cairo, libinput, libcap, pam, gdk-pixbuf, librsvg
|
, pango, cairo, libinput, libcap, pam, gdk-pixbuf, librsvg
|
||||||
, wlroots, wayland-protocols
|
, wlroots, wayland-protocols
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "sway-unwrapped";
|
pname = "sway-unwrapped";
|
||||||
version = "1.4";
|
version = "1.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "swaywm";
|
owner = "swaywm";
|
||||||
repo = "sway";
|
repo = "sway";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "11qf89y3q92g696a6f4d23qb44gqixg6qxq740vwv2jw59ms34ja";
|
sha256 = "0r3b7h778l9i20z3him9i2qsaynpn9y78hzfgv3cqi8fyry2c4f9";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -22,8 +21,12 @@ stdenv.mkDerivation rec {
|
|||||||
./load-configuration-from-etc.patch
|
./load-configuration-from-etc.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace meson.build --replace "v1.5" "1.5"
|
||||||
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig meson ninja scdoc
|
meson ninja pkg-config wayland scdoc
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
@ -32,16 +35,23 @@ stdenv.mkDerivation rec {
|
|||||||
wlroots wayland-protocols
|
wlroots wayland-protocols
|
||||||
];
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Ddefault-wallpaper=false" "-Dxwayland=enabled" "-Dgdk-pixbuf=enabled"
|
"-Ddefault-wallpaper=false"
|
||||||
"-Dtray=enabled" "-Dman-pages=enabled"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "i3-compatible tiling Wayland compositor";
|
description = "An i3-compatible tiling Wayland compositor";
|
||||||
|
longDescription = ''
|
||||||
|
Sway is a tiling Wayland compositor and a drop-in replacement for the i3
|
||||||
|
window manager for X11. It works with your existing i3 configuration and
|
||||||
|
supports most of i3's features, plus a few extras.
|
||||||
|
Sway allows you to arrange your application windows logically, rather
|
||||||
|
than spatially. Windows are arranged into a grid by default which
|
||||||
|
maximizes the efficiency of your screen and can be quickly manipulated
|
||||||
|
using only the keyboard.
|
||||||
|
'';
|
||||||
homepage = "https://swaywm.org";
|
homepage = "https://swaywm.org";
|
||||||
|
changelog = "https://github.com/swaywm/sway/releases/tag/${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ primeos synthetica ma27 ];
|
maintainers = with maintainers; [ primeos synthetica ma27 ];
|
||||||
|
@ -6,13 +6,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "wlroots";
|
pname = "wlroots";
|
||||||
version = "0.10.1";
|
version = "0.11.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "swaywm";
|
owner = "swaywm";
|
||||||
repo = "wlroots";
|
repo = "wlroots";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0j2lh9vc92zhn44rjbia5aw3y1rpgfng1x1h17lcvj5m4i6vj0pc";
|
sha256 = "08d5d52m8wy3imfc6mdxpx8swhh2k4s1gmfaykg02j59z84awc6p";
|
||||||
};
|
};
|
||||||
|
|
||||||
# $out for the library and $examples for the example programs (in examples):
|
# $out for the library and $examples for the example programs (in examples):
|
||||||
@ -21,11 +21,13 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ meson ninja pkg-config wayland ];
|
nativeBuildInputs = [ meson ninja pkg-config wayland ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libGL wayland-protocols libinput libxkbcommon pixman
|
libGL wayland wayland-protocols libinput libxkbcommon pixman
|
||||||
xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa
|
xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa
|
||||||
libpng ffmpeg
|
libpng ffmpeg
|
||||||
];
|
];
|
||||||
|
|
||||||
|
mesonFlags = [ "-Dlogind-provider=systemd" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
# Copy the library to $examples
|
# Copy the library to $examples
|
||||||
mkdir -p $examples/lib
|
mkdir -p $examples/lib
|
||||||
|
Loading…
x
Reference in New Issue
Block a user