evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sc / scd2html / package.nix
blob8ca7f8824a80de5ff40252ebbdf9d8a7517d0da3
1 { lib
2 , stdenv
3 , fetchFromSourcehut
4 , scdoc
5 }:
7 stdenv.mkDerivation rec {
8   pname = "scd2html";
9   version = "1.0.0";
11   src = fetchFromSourcehut {
12     owner = "~bitfehler";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-oZSHv5n/WOrvy77tC94Z8pYugLpHkcv7U1PrzR+8fHM=";
16   };
18   strictDeps = true;
20   nativeBuildInputs = [
21     scdoc
22   ];
24   postPatch = ''
25     substituteInPlace Makefile \
26       --replace "LDFLAGS+=-static" "LDFLAGS+="
27   '';
29   makeFlags = [
30     "PREFIX=${placeholder "out"}"
31   ];
33   enableParallelBuilding = true;
35   meta = with lib; {
36     description = "scd2html generates HTML from scdoc source files";
37     homepage = "https://git.sr.ht/~bitfehler/scd2html";
38     license = licenses.mit;
39     maintainers = with maintainers; [ ];
40     platforms = platforms.linux;
41     mainProgram = "scd2html";
42   };