Skip to content

Commit 930414e

Browse files
committedNov 3, 2017
arora: use fetchFromGitHub
1 parent 3ba7fa3 commit 930414e

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed
 

‎pkgs/applications/networking/browsers/arora/default.nix

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
1-
{ stdenv, fetchurl, qt4, qmake4Hook }:
1+
{ stdenv, fetchFromGitHub, qt4, qmake4Hook }:
22

33
stdenv.mkDerivation rec {
44
name = "arora-${version}";
55
version = "0.11.0";
66

7-
src = fetchurl {
8-
url = "https://github.com/Arora/arora/archive/${version}.tar.gz";
9-
sha256 = "1ffkranxi93lrg5r7a90pix9j8xqmf0z1mb1m8579v9m34cyypvg";
7+
src = fetchFromGitHub {
8+
owner = "Arora";
9+
repo = "arora";
10+
rev = version;
11+
sha256 = "0wmivgx3mw51rghi6q8fgivpkqc98z2mqmllf7c98ln0wd8rkf3c";
1012
};
1113

1214
buildInputs = [ qt4 ];
1315
nativeBuildInputs = [ qmake4Hook ];
1416

17+
enableParallelBuilding = true;
18+
1519
meta = with stdenv.lib; {
1620
platforms = qt4.meta.platforms;
1721
maintainers = [ maintainers.phreedom ];

0 commit comments

Comments
 (0)
Please sign in to comment.