Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7049c0475d34
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ec7bcb262573
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 25, 2020

  1. metastore: init at 1.1.2

    haskelious committed Feb 25, 2020
    Copy the full SHA
    fca772a View commit details

Commits on Feb 28, 2020

  1. Merge pull request #80914 from fkstef/fix/metastore-create

    metastore: init at 1.1.2
    nlewo authored Feb 28, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ec7bcb2 View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/os-specific/linux/metastore/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
24 changes: 24 additions & 0 deletions pkgs/os-specific/linux/metastore/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -16911,6 +16911,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 { };