mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
metastore: init at 1.1.2
This commit is contained in:
parent
5b732a1f51
commit
fca772a551
24
pkgs/os-specific/linux/metastore/default.nix
Normal file
24
pkgs/os-specific/linux/metastore/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -16907,6 +16907,8 @@ in
|
||||
mdadm = mdadm4;
|
||||
mdadm4 = callPackage ../os-specific/linux/mdadm { };
|
||||
|
||||
metastore = callPackage ../os-specific/linux/metastore { };
|
||||
|
||||
mingetty = callPackage ../os-specific/linux/mingetty { };
|
||||
|
||||
miraclecast = callPackage ../os-specific/linux/miraclecast { };
|
||||
|
Loading…
Reference in New Issue
Block a user