seturgent: unstable-2012-08-17 -> 1.5

This commit is contained in:
Felix Buehler 2021-12-24 12:45:56 +01:00
parent 85b6f5299c
commit 81affdbe10

View file

@ -1,15 +1,15 @@
{ lib, stdenv, fetchurl, libX11, xorgproto, unzip }: { lib, stdenv, fetchgit, libX11, xorgproto }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "seturgent"; pname = "seturgent";
version = "unstable-2012-08-17"; version = "1.5";
src = fetchurl { src = fetchgit {
url = "https://github.com/hiltjo/seturgent/archive/ada70dcb15865391e5cdcab27a0739a304a17e03.zip"; url = "git://git.codemadness.org/seturgent";
sha256 = "0q1sr6aljkw2jr9b4xxzbc01qvnd5vk3pxrypif9yd8xjw4wqwri"; rev = version;
sha256 = "sha256-XW7ms0BVCf1/fuL3PJ970t6sHkmMY1iLYXfS9R60JX0=";
}; };
nativeBuildInputs = [ unzip ];
buildInputs = [ buildInputs = [
libX11 libX11
xorgproto xorgproto
@ -20,11 +20,11 @@ stdenv.mkDerivation {
mv seturgent $out/bin mv seturgent $out/bin
''; '';
meta = { meta = with lib; {
platforms = lib.platforms.linux; platforms = platforms.linux;
description = "Set an application's urgency hint (or not)"; description = "Set an application's urgency hint (or not)";
maintainers = [ lib.maintainers.yarr ]; maintainers = with maintainers; [ yarr ];
homepage = "https://github.com/hiltjo/seturgent"; homepage = "https://codemadness.org/seturgent-set-urgency-hints-for-x-applications.html";
license = lib.licenses.mit; license = licenses.mit;
}; };
} }