nixpkgs/pkgs/applications/misc/devilspie2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
Nix
Raw Normal View History

2021-06-23 18:22:04 +00:00
{ lib, stdenv, fetchurl, intltool, pkg-config, glib, gtk, lua, libwnck }:
2015-09-09 21:11:56 +00:00
stdenv.mkDerivation rec {
pname = "devilspie2";
2022-10-11 14:35:15 +00:00
version = "0.44";
2015-09-09 21:11:56 +00:00
src = fetchurl {
2022-10-11 14:35:15 +00:00
url = "https://download.savannah.gnu.org/releases/devilspie2/devilspie2-${version}.tar.xz";
sha256 = "Cp8erdKyKjGBY+QYAGXUlSIboaQ60gIepoZs0RgEJkA=";
2015-09-09 21:11:56 +00:00
};
nativeBuildInputs = [ intltool pkg-config ];
2021-06-23 18:22:04 +00:00
buildInputs = [ glib gtk lua libwnck ];
2015-09-09 21:11:56 +00:00
installPhase = ''
mkdir -p $out/bin $out/share/man/man1
cp bin/devilspie2 $out/bin
cp devilspie2.1 $out/share/man/man1
'';
meta = with lib; {
2017-03-20 01:02:30 +00:00
description = "A window matching utility";
2015-09-09 21:11:56 +00:00
longDescription = ''
Devilspie2 is a window matching utility, allowing the user to
perform scripted actions on windows as they are created. For
example you can script a terminal program to always be
positioned at a specific screen position, or position a window
on a specific workspace.
'';
2022-10-12 09:11:55 +00:00
homepage = "https://www.nongnu.org/devilspie2/";
2015-09-09 21:11:56 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.ebzzry ];
platforms = platforms.linux;
};
}