mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 02:51:18 +00:00
25 lines
617 B
Nix
25 lines
617 B
Nix
|
{ 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 stdenv.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;
|
||
|
};
|
||
|
}
|