tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
opkg: 0.7.0 -> 0.8.0
authored by
emaryn
and committed by
emaryn
8 months ago
8353cbd7
eb651797
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
op
opkg
package.nix
+6
-6
pkgs/by-name/op/opkg/package.nix
···
14
14
autoreconfHook,
15
15
}:
16
16
17
17
-
stdenv.mkDerivation rec {
17
17
+
stdenv.mkDerivation (finalAttrs: {
18
18
pname = "opkg";
19
19
-
version = "0.7.0";
19
19
+
version = "0.8.0";
20
20
21
21
src = fetchurl {
22
22
-
url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
23
23
-
hash = "sha256-2XP9DxVo9Y+H1q7NmqlePh9gIUpFzuJnBL+P51fFRWc=";
22
22
+
url = "https://git.yoctoproject.org/opkg/snapshot/opkg-${finalAttrs.version}.tar.gz";
23
23
+
hash = "sha256-3vDW6VtBBr4HTA/OWgyqDo1zfyH+Mfvu8ViFl7rTlmY=";
24
24
};
25
25
26
26
nativeBuildInputs = [
···
47
47
meta = {
48
48
description = "Lightweight package management system based upon ipkg";
49
49
homepage = "https://git.yoctoproject.org/cgit/cgit.cgi/opkg/";
50
50
-
changelog = "https://git.yoctoproject.org/opkg/tree/NEWS?h=v${version}";
50
50
+
changelog = "https://git.yoctoproject.org/opkg/tree/CHANGELOG.md";
51
51
license = lib.licenses.gpl2Plus;
52
52
platforms = lib.platforms.linux;
53
53
maintainers = with lib.maintainers; [ pSub ];
54
54
};
55
55
-
}
55
55
+
})