tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
communi: init at 2016-01-03
Christoph Hrdinka
10 years ago
5e380189
4ad12e03
+32
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
irc
communi
default.nix
top-level
all-packages.nix
+30
pkgs/applications/networking/irc/communi/default.nix
···
1
1
+
{ fetchgit, libcommuni, qt5, stdenv
2
2
+
}:
3
3
+
4
4
+
stdenv.mkDerivation rec {
5
5
+
name = "communi-${version}";
6
6
+
version = "2016-01-03";
7
7
+
8
8
+
src = fetchgit {
9
9
+
url = "https://github.com/communi/communi-desktop.git";
10
10
+
rev = "ad1b9a30ed6c51940c0d2714b126a32b5d68c876";
11
11
+
sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd";
12
12
+
};
13
13
+
14
14
+
buildInputs = [ libcommuni qt5.qtbase ];
15
15
+
16
16
+
enableParallelBuild = true;
17
17
+
18
18
+
configurePhase = ''
19
19
+
export QMAKEFEATURES=${libcommuni}/features
20
20
+
qmake -r COMMUNI_INSTALL_PREFIX=$out
21
21
+
'';
22
22
+
23
23
+
meta = with stdenv.lib; {
24
24
+
description = "A simple and elegant cross-platform IRC client";
25
25
+
homepage = https://github.com/communi/communi-desktop;
26
26
+
license = licenses.bsd3;
27
27
+
platforms = platforms.all;
28
28
+
maintainers = with maintainers; [ hrdinka ];
29
29
+
};
30
30
+
}
+2
pkgs/top-level/all-packages.nix
···
11288
11288
pulseaudioSupport = config.pulseaudio or false;
11289
11289
};
11290
11290
11291
11291
+
communi = callPackage ../applications/networking/irc/communi { };
11292
11292
+
11291
11293
CompBus = callPackage ../applications/audio/CompBus { };
11292
11294
11293
11295
compiz = callPackage ../applications/window-managers/compiz {