tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
arora: use fetchFromGitHub
Orivej Desh
8 years ago
930414e2
3ba7fa35
+8
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
browsers
arora
default.nix
+8
-4
pkgs/applications/networking/browsers/arora/default.nix
···
1
-
{ stdenv, fetchurl, qt4, qmake4Hook }:
2
3
stdenv.mkDerivation rec {
4
name = "arora-${version}";
5
version = "0.11.0";
6
7
-
src = fetchurl {
8
-
url = "https://github.com/Arora/arora/archive/${version}.tar.gz";
9
-
sha256 = "1ffkranxi93lrg5r7a90pix9j8xqmf0z1mb1m8579v9m34cyypvg";
0
0
10
};
11
12
buildInputs = [ qt4 ];
13
nativeBuildInputs = [ qmake4Hook ];
0
0
14
15
meta = with stdenv.lib; {
16
platforms = qt4.meta.platforms;
···
1
+
{ stdenv, fetchFromGitHub, qt4, qmake4Hook }:
2
3
stdenv.mkDerivation rec {
4
name = "arora-${version}";
5
version = "0.11.0";
6
7
+
src = fetchFromGitHub {
8
+
owner = "Arora";
9
+
repo = "arora";
10
+
rev = version;
11
+
sha256 = "0wmivgx3mw51rghi6q8fgivpkqc98z2mqmllf7c98ln0wd8rkf3c";
12
};
13
14
buildInputs = [ qt4 ];
15
nativeBuildInputs = [ qmake4Hook ];
16
+
17
+
enableParallelBuilding = true;
18
19
meta = with stdenv.lib; {
20
platforms = qt4.meta.platforms;