tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
scdoc: 1.11.2 -> 1.11.2-unstable-2023-03-08
Anderson Torres
2 years ago
b604023e
4fb9541e
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sc
scdoc
package.nix
+6
-6
pkgs/by-name/sc/scdoc/package.nix
···
6
7
stdenv.mkDerivation (finalAttrs: {
8
pname = "scdoc";
9
-
version = "1.11.2";
10
11
src = fetchFromSourcehut {
12
owner = "~sircmpwn";
13
repo = "scdoc";
14
-
rev = finalAttrs.version;
15
-
hash = "sha256-2NVC+1in1Yt6/XGcHXP+V4AAz8xW/hSq9ctF/Frdgh0=";
16
};
17
18
outputs = [ "out" "man" "dev" ];
19
20
postPatch = ''
21
substituteInPlace Makefile \
22
-
--replace "-static" ""
23
'';
24
25
makeFlags = [
···
33
meta = {
34
description = "A simple man page generator written in C99 for POSIX systems";
35
homepage = "https://git.sr.ht/~sircmpwn/scdoc";
36
-
changelog = "https://git.sr.ht/~sircmpwn/scdoc/refs/${finalAttrs.version}";
37
license = lib.licenses.mit;
0
38
maintainers = with lib.maintainers; [ primeos AndersonTorres ];
39
platforms = lib.platforms.unix;
40
-
mainProgram = "scdoc";
41
};
42
})
···
6
7
stdenv.mkDerivation (finalAttrs: {
8
pname = "scdoc";
9
+
version = "1.11.2-unstable-2023-03-08";
10
11
src = fetchFromSourcehut {
12
owner = "~sircmpwn";
13
repo = "scdoc";
14
+
rev = "afeda241f3f9b2c27e461f32d9c2a704ab82ef61";
15
+
hash = "sha256-jIYygjUXP/6o5d9drlZjdr25KjEQx8oy4TaQwQEu8fM=";
16
};
17
18
outputs = [ "out" "man" "dev" ];
19
20
postPatch = ''
21
substituteInPlace Makefile \
22
+
--replace "LDFLAGS+=-static" "LDFLAGS+="
23
'';
24
25
makeFlags = [
···
33
meta = {
34
description = "A simple man page generator written in C99 for POSIX systems";
35
homepage = "https://git.sr.ht/~sircmpwn/scdoc";
36
+
changelog = "https://git.sr.ht/~sircmpwn/scdoc/refs/${finalAttrs.src.rev}";
37
license = lib.licenses.mit;
38
+
mainProgram = "scdoc";
39
maintainers = with lib.maintainers; [ primeos AndersonTorres ];
40
platforms = lib.platforms.unix;
0
41
};
42
})