nixpkgs/pkgs/applications/version-management/yadm/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, git, gnupg }:
2016-07-23 21:00:42 +00:00
2020-02-10 21:57:25 +00:00
let version = "2.4.0"; in
2016-07-23 21:00:42 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "yadm";
inherit version;
2016-07-23 21:00:42 +00:00
buildInputs = [ git gnupg ];
2016-08-06 21:59:54 +00:00
src = fetchFromGitHub {
owner = "TheLocehiliosan";
repo = "yadm";
2019-09-08 23:38:31 +00:00
rev = version;
2020-02-10 21:57:25 +00:00
sha256 = "0kpahznrkxkyj92vrhwjvldg2affi1askgwvpgbs4mg40f92szlp";
2016-07-23 21:00:42 +00:00
};
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
install -Dt $out/bin $src/yadm
install -Dt $out/share/man/man1 $src/yadm.1
install -D $src/completion/yadm.zsh_completion $out/share/zsh/site-functions/_yadm
install -D $src/completion/yadm.bash_completion $out/share/bash-completion/completions/yadm.bash
runHook postInstall
2016-07-23 21:00:42 +00:00
'';
meta = {
homepage = https://github.com/TheLocehiliosan/yadm;
2016-07-23 21:00:42 +00:00
description = "Yet Another Dotfiles Manager";
longDescription = ''
yadm is a dotfile management tool with 3 main features:
* Manages files across systems using a single Git repository.
* Provides a way to use alternate files on a specific OS or host.
* Supplies a method of encrypting confidential data so it can safely be stored in your repository.
2016-07-23 21:00:42 +00:00
'';
license = stdenv.lib.licenses.gpl3;
2016-07-23 21:00:42 +00:00
platforms = stdenv.lib.platforms.unix;
};
}