tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
seturgent: unstable-2012-08-17 -> 1.5
Felix Buehler
4 years ago
81affdbe
85b6f529
+12
-12
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
seturgent
default.nix
+12
-12
pkgs/os-specific/linux/seturgent/default.nix
···
1
1
-
{ lib, stdenv, fetchurl, libX11, xorgproto, unzip }:
1
1
+
{ lib, stdenv, fetchgit, libX11, xorgproto }:
2
2
3
3
-
stdenv.mkDerivation {
3
3
+
stdenv.mkDerivation rec {
4
4
pname = "seturgent";
5
5
-
version = "unstable-2012-08-17";
5
5
+
version = "1.5";
6
6
7
7
-
src = fetchurl {
8
8
-
url = "https://github.com/hiltjo/seturgent/archive/ada70dcb15865391e5cdcab27a0739a304a17e03.zip";
9
9
-
sha256 = "0q1sr6aljkw2jr9b4xxzbc01qvnd5vk3pxrypif9yd8xjw4wqwri";
7
7
+
src = fetchgit {
8
8
+
url = "git://git.codemadness.org/seturgent";
9
9
+
rev = version;
10
10
+
sha256 = "sha256-XW7ms0BVCf1/fuL3PJ970t6sHkmMY1iLYXfS9R60JX0=";
10
11
};
11
12
12
12
-
nativeBuildInputs = [ unzip ];
13
13
buildInputs = [
14
14
libX11
15
15
xorgproto
···
20
20
mv seturgent $out/bin
21
21
'';
22
22
23
23
-
meta = {
24
24
-
platforms = lib.platforms.linux;
23
23
+
meta = with lib; {
24
24
+
platforms = platforms.linux;
25
25
description = "Set an application's urgency hint (or not)";
26
26
-
maintainers = [ lib.maintainers.yarr ];
27
27
-
homepage = "https://github.com/hiltjo/seturgent";
28
28
-
license = lib.licenses.mit;
26
26
+
maintainers = with maintainers; [ yarr ];
27
27
+
homepage = "https://codemadness.org/seturgent-set-urgency-hints-for-x-applications.html";
28
28
+
license = licenses.mit;
29
29
};
30
30
}