1{ lib, buildGoPackage, fetchFromGitHub }:
2
3buildGoPackage {
4 pname = "pcstat-unstable";
5 version = "2017-05-28";
6
7 goPackagePath = "github.com/tobert/pcstat";
8
9 src = fetchFromGitHub {
10 rev = "91a7346e5b462a61e876c0574cb1ba331a6a5ac5";
11 owner = "tobert";
12 repo = "pcstat";
13 sha256 = "88853e42d16c05e580af4fb8aa815a84ea0fc43e3a25e19c85e649a5f5a2874c";
14 };
15
16 goDeps = ./deps.nix;
17
18 meta = with lib; {
19 description = "Page Cache stat: get page cache stats for files on Linux";
20 homepage = "https://github.com/tobert/pcstat";
21 license = licenses.asl20;
22 maintainers = with maintainers; [ aminechikhaoui ];
23 };
24}