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

+12 -12
+12 -12
pkgs/os-specific/linux/seturgent/default.nix
··· 1 - { lib, stdenv, fetchurl, libX11, xorgproto, unzip }: 2 3 - stdenv.mkDerivation { 4 pname = "seturgent"; 5 - version = "unstable-2012-08-17"; 6 7 - src = fetchurl { 8 - url = "https://github.com/hiltjo/seturgent/archive/ada70dcb15865391e5cdcab27a0739a304a17e03.zip"; 9 - sha256 = "0q1sr6aljkw2jr9b4xxzbc01qvnd5vk3pxrypif9yd8xjw4wqwri"; 10 }; 11 12 - nativeBuildInputs = [ unzip ]; 13 buildInputs = [ 14 libX11 15 xorgproto ··· 20 mv seturgent $out/bin 21 ''; 22 23 - meta = { 24 - platforms = lib.platforms.linux; 25 description = "Set an application's urgency hint (or not)"; 26 - maintainers = [ lib.maintainers.yarr ]; 27 - homepage = "https://github.com/hiltjo/seturgent"; 28 - license = lib.licenses.mit; 29 }; 30 }
··· 1 + { lib, stdenv, fetchgit, libX11, xorgproto }: 2 3 + stdenv.mkDerivation rec { 4 pname = "seturgent"; 5 + version = "1.5"; 6 7 + src = fetchgit { 8 + url = "git://git.codemadness.org/seturgent"; 9 + rev = version; 10 + sha256 = "sha256-XW7ms0BVCf1/fuL3PJ970t6sHkmMY1iLYXfS9R60JX0="; 11 }; 12 13 buildInputs = [ 14 libX11 15 xorgproto ··· 20 mv seturgent $out/bin 21 ''; 22 23 + meta = with lib; { 24 + platforms = platforms.linux; 25 description = "Set an application's urgency hint (or not)"; 26 + maintainers = with maintainers; [ yarr ]; 27 + homepage = "https://codemadness.org/seturgent-set-urgency-hints-for-x-applications.html"; 28 + license = licenses.mit; 29 }; 30 }