mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01: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
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ lib, stdenv, cmake, fetchFromGitLab
|
|
, json_c, libsodium, libxml2, ncurses }:
|
|
|
|
let
|
|
rev = "22796663dcad81684ab24308d9db570f6781ba2c";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "mpw-${version}-${builtins.substring 0 8 rev}";
|
|
version = "2.6";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "MasterPassword";
|
|
repo = "MasterPassword";
|
|
sha256 = "1f2vqacgbyam1mazawrfim8zwp38gnwf5v3xkkficsfnv789g6fw";
|
|
inherit rev;
|
|
};
|
|
|
|
sourceRoot = "./source/platform-independent/c/cli";
|
|
|
|
postPatch = ''
|
|
rm build
|
|
substituteInPlace mpw-cli-tests \
|
|
--replace '/usr/bin/env bash' ${stdenv.shell} \
|
|
--replace ./mpw ./build/mpw
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-Dmpw_version=${version}"
|
|
"-DBUILD_MPW_TESTS=ON"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ json_c libxml2 libsodium ncurses ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 mpw $out/bin/mpw
|
|
install -Dm644 ../mpw.completion.bash $out/share/bash-completion/completions/_mpw
|
|
install -Dm644 ../../../../README.md $out/share/doc/mpw/README.md
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
../mpw-cli-tests
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A stateless password management solution";
|
|
homepage = "https://masterpasswordapp.com/";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|