We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 3ba7fa3 commit 930414eCopy full SHA for 930414e
pkgs/applications/networking/browsers/arora/default.nix
@@ -1,17 +1,21 @@
1
-{ stdenv, fetchurl, qt4, qmake4Hook }:
+{ stdenv, fetchFromGitHub, 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";
+ src = fetchFromGitHub {
+ owner = "Arora";
+ 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;
21
maintainers = [ maintainers.phreedom ];
0 commit comments