summary refs log blame commit diff
path: root/pkgs/os-specific/linux/metastore/default.nix
blob: c9875297186e2d2dd9197f4c4b1c23dfbb5a12c6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                                         














                                                                    
                    






                                                                 
{ lib, stdenv, libbsd, fetchFromGitHub }:

stdenv.mkDerivation rec {
  version = "1.1.2";
  pname = "metastore";

  src = fetchFromGitHub {
    owner = "przemoc";
    repo = "metastore";
    rev = "v${version}";
    sha256 = "0mb10wfckswqgi0bq25ncgabnd3iwj7s7hhg3wpcyfgckdynwizv";
  };

  buildInputs = [ libbsd ];
  installFlags = [ "PREFIX=$(out)" ];

  meta = with lib; {
    description = "Store and restore metadata from a filesystem";
    homepage = "https://software.przemoc.net/#metastore";
    license = licenses.gpl2;
    maintainers = with maintainers; [ sstef ];
    platforms = platforms.linux;
  };
}