arora: use fetchFromGitHub
This commit is contained in:
parent
3ba7fa351c
commit
930414e22e
@ -1,17 +1,21 @@
|
|||||||
{ stdenv, fetchurl, qt4, qmake4Hook }:
|
{ stdenv, fetchFromGitHub, qt4, qmake4Hook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "arora-${version}";
|
name = "arora-${version}";
|
||||||
version = "0.11.0";
|
version = "0.11.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/Arora/arora/archive/${version}.tar.gz";
|
owner = "Arora";
|
||||||
sha256 = "1ffkranxi93lrg5r7a90pix9j8xqmf0z1mb1m8579v9m34cyypvg";
|
repo = "arora";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0wmivgx3mw51rghi6q8fgivpkqc98z2mqmllf7c98ln0wd8rkf3c";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ qt4 ];
|
buildInputs = [ qt4 ];
|
||||||
nativeBuildInputs = [ qmake4Hook ];
|
nativeBuildInputs = [ qmake4Hook ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
platforms = qt4.meta.platforms;
|
platforms = qt4.meta.platforms;
|
||||||
maintainers = [ maintainers.phreedom ];
|
maintainers = [ maintainers.phreedom ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user