tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
src: 1.33 -> 1.41
emaryn
1 year ago
f43f0265
35f9e775
+8
-6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sr
src
package.nix
+8
-6
pkgs/by-name/sr/src/package.nix
reviewed
···
7
7
makeWrapper,
8
8
python3,
9
9
rcs,
10
10
+
asciidoctor,
10
11
}:
11
12
12
13
stdenv.mkDerivation (finalAttrs: {
13
14
pname = "src";
14
14
-
version = "1.33";
15
15
+
version = "1.41";
15
16
16
17
src = fetchFromGitLab {
17
18
owner = "esr";
18
19
repo = "src";
19
19
-
rev = finalAttrs.version;
20
20
-
hash = "sha256-xyKJcM9dWsFGhe+ISR6S1f67jkYlS9heZe0TFXY8DgQ=";
20
20
+
tag = finalAttrs.version;
21
21
+
hash = "sha256-i5i6+RmQ/70ul2r/NC6xv/8sUP3+8mkQIDgyC1NrSrI=";
21
22
};
22
23
23
24
nativeBuildInputs = [
24
25
asciidoc
26
26
+
asciidoctor
25
27
makeWrapper
26
28
];
27
29
···
46
48
--suffix PATH ":" "${rcs}/bin"
47
49
'';
48
50
49
49
-
meta = with lib; {
51
51
+
meta = {
50
52
homepage = "http://www.catb.org/esr/src/";
51
53
description = "Simple single-file revision control";
52
54
longDescription = ''
···
58
60
anywhere.
59
61
'';
60
62
changelog = "https://gitlab.com/esr/src/-/raw/${finalAttrs.version}/NEWS.adoc";
61
61
-
license = licenses.bsd2;
63
63
+
license = lib.licenses.bsd2;
62
64
mainProgram = "src";
63
63
-
maintainers = with maintainers; [ ];
65
65
+
maintainers = with lib.maintainers; [ ];
64
66
inherit (python3.meta) platforms;
65
67
};
66
68
})