mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
28 lines
709 B
Nix
28 lines
709 B
Nix
{ stdenv, fetchurl, libX11, xproto, xdotool, unzip }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "seturgent-2012-08-17";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/hiltjo/seturgent/archive/ada70dcb15865391e5cdcab27a0739a304a17e03.zip";
|
|
sha256 = "0q1sr6aljkw2jr9b4xxzbc01qvnd5vk3pxrypif9yd8xjw4wqwri";
|
|
};
|
|
|
|
buildInputs = [
|
|
libX11 xproto unzip
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -pv $out/bin
|
|
mv seturgent $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.linux;
|
|
description = "Set an application's urgency hint (or not)";
|
|
maintainers = [ stdenv.lib.maintainers.yarr ];
|
|
homepage = https://github.com/hiltjo/seturgent;
|
|
license = stdenv.lib.licenses.mit;
|
|
};
|
|
}
|