Unverified Commit 5a8d23aa authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

fsmon: add changelog to meta

parent e03d562d
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub }:
{ lib
, stdenv
, fetchFromGitHub
}:

stdenv.mkDerivation rec {
  pname = "fsmon";
@@ -7,8 +10,8 @@ stdenv.mkDerivation rec {
  src = fetchFromGitHub {
    owner = "nowsecure";
    repo = "fsmon";
    rev = version;
    sha256 = "sha256-vAlAnGeFMgLIKaqUusBV7QalYh0+dZdifUvZwebk65U=";
    rev = "refs/tags/${version}";
    hash = "sha256-vAlAnGeFMgLIKaqUusBV7QalYh0+dZdifUvZwebk65U=";
  };

  installPhase = ''
@@ -18,8 +21,9 @@ stdenv.mkDerivation rec {
  meta = with lib; {
    description = "FileSystem Monitor utility";
    homepage = "https://github.com/nowsecure/fsmon";
    changelog = "https://github.com/nowsecure/fsmon/releases/tag/${version}";
    license = licenses.mit;
    maintainers = [ maintainers.dezgeg ];
    maintainers = with maintainers; [ dezgeg ];
    platforms = platforms.linux;
  };
}