fsmon: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-11-25 19:54:15 +01:00 committed by GitHub
parent e03d562dd1
commit 5a8d23aa4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,7 @@
{ 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;
};
}