Unverified Commit 95c538d6 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

webdump: init at 0.2 (#501026)

parents 23ccdf26 3e6f83e9
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -8402,6 +8402,12 @@
    githubId = 55919390;
    name = "Vincent VILLIAUMEY";
  };
  eyenx = {
    email = "eye@eyenx.ch";
    github = "eyenx";
    githubId = 1947882;
    name = "Toni Tauro";
  };
  eyjhb = {
    email = "eyjhbb@gmail.com";
    matrix = "@eyjhb:eyjhb.dk";
+25 −0
Original line number Diff line number Diff line
{
  lib,
  fetchgit,
  stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "webdump";
  version = "0.2";

  src = fetchgit {
    url = "git://git.codemadness.org/webdump";
    tag = finalAttrs.version;
    hash = "sha256-YtgZkAnbQkIr2fhUYpSp/PaduuBFjxIkrkaROxrmT/0=";
  };

  makeFlags = [ "PREFIX=${placeholder "out"}" ];

  meta = {
    homepage = "https://www.codemadness.org/git/webdump";
    description = "HTML to plain-text converter for webpages";
    license = lib.licenses.isc;
    maintainers = with lib.maintainers; [ eyenx ];
    mainProgram = "webdump";
  };
})