tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
libirecovery: 1.0.0+date=2022-04-04 -> 1.1.0
Theodore Ni
2 years ago
6cf40e09
15aa6d82
+7
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libirecovery
default.nix
+7
-3
pkgs/development/libraries/libirecovery/default.nix
···
10
11
stdenv.mkDerivation rec {
12
pname = "libirecovery";
13
-
version = "1.0.0+date=2022-04-04";
14
15
outputs = [ "out" "dev" ];
16
17
src = fetchFromGitHub {
18
owner = "libimobiledevice";
19
repo = pname;
20
-
rev = "82d235703044c5af9da8ad8f77351fd2046dac47";
21
-
hash = "sha256-OESN9qme+TlSt+ZMbR4F3z/3RN0I12R7fcSyURBqUVk=";
22
};
23
24
nativeBuildInputs = [
···
31
readline
32
libimobiledevice-glue
33
];
0
0
0
0
34
35
# Packager note: Not clear whether this needs a NixOS configuration,
36
# as only the `idevicerestore` binary was tested so far (which worked
···
10
11
stdenv.mkDerivation rec {
12
pname = "libirecovery";
13
+
version = "1.1.0";
14
15
outputs = [ "out" "dev" ];
16
17
src = fetchFromGitHub {
18
owner = "libimobiledevice";
19
repo = pname;
20
+
rev = version;
21
+
hash = "sha256-84xwSOLwPU2Py6X2r6FYESxdc1EuuD6xHEXTUUEdvTE=";
22
};
23
24
nativeBuildInputs = [
···
31
readline
32
libimobiledevice-glue
33
];
34
+
35
+
preAutoreconf = ''
36
+
export RELEASE_VERSION=${version}
37
+
'';
38
39
# Packager note: Not clear whether this needs a NixOS configuration,
40
# as only the `idevicerestore` binary was tested so far (which worked