tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
qdl: format
Mustafa Çalışkan
2 years ago
c8e43485
c340267c
+12
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
qdl
default.nix
+12
-7
pkgs/tools/misc/qdl/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, libxml2, systemd }:
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, libxml2
5
5
+
, systemd
6
6
+
}:
2
7
3
8
stdenv.mkDerivation {
4
9
pname = "qdl";
5
10
version = "unstable-2021-05-06";
6
11
7
12
src = fetchFromGitHub {
8
8
-
owner = "andersson";
9
9
-
repo = "qdl";
10
10
-
rev = "2021b303a81ca1bcf21b7f1f23674b5c8747646f";
13
13
+
owner = "andersson";
14
14
+
repo = "qdl";
15
15
+
rev = "2021b303a81ca1bcf21b7f1f23674b5c8747646f";
11
16
sha256 = "0akrdca4jjdkfdya36vy1y5vzimrc4pp5jm24rmlw8hbqxvj72ri";
12
17
};
13
18
···
20
25
'';
21
26
22
27
meta = with lib; {
23
23
-
homepage = "https://github.com/andersson/qdl";
28
28
+
homepage = "https://github.com/andersson/qdl";
24
29
description = "Tool for flashing images to Qualcomm devices";
25
25
-
license = licenses.bsd3;
30
30
+
license = licenses.bsd3;
26
31
maintainers = with maintainers; [ muscaln ];
27
27
-
platforms = platforms.linux;
32
32
+
platforms = platforms.linux;
28
33
};
29
34
}