mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, coreutils, makeWrapper
|
|
, rsync, python3, pythonPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mergerfs-tools";
|
|
version = "20190411";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trapexit";
|
|
repo = pname;
|
|
rev = "6e41fc5848c7cc4408caea86f3991c8cc2ac85a1";
|
|
sha256 = "0izswg6bya13scvb37l3gkl7mvi8q7l11p4hp4phdlcwh9jvdzcj";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ python3 ];
|
|
|
|
makeFlags = [
|
|
"INSTALL=${coreutils}/bin/install"
|
|
"PREFIX=${placeholder "out"}"
|
|
];
|
|
|
|
postInstall = with stdenv.lib; ''
|
|
wrapProgram $out/bin/mergerfs.balance --prefix PATH : ${makeBinPath [ rsync ]}
|
|
wrapProgram $out/bin/mergerfs.dup --prefix PATH : ${makeBinPath [ rsync ]}
|
|
wrapProgram $out/bin/mergerfs.mktrash --prefix PATH : ${makeBinPath [ pythonPackages.xattr ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Optional tools to help manage data in a mergerfs pool";
|
|
homepage = "https://github.com/trapexit/mergerfs-tools";
|
|
license = licenses.isc;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jfrankenau ];
|
|
};
|
|
}
|