commit
c8ca30fe2a
34
pkgs/applications/version-management/yadm/default.nix
Normal file
34
pkgs/applications/version-management/yadm/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchurl, fetchFromGitHub }:
|
||||
|
||||
let version = "1.04"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "yadm-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "TheLocehiliosan";
|
||||
repo = "yadm";
|
||||
rev = "${version}";
|
||||
sha256 = "1g5nz4y63ccxlbz67klm78525ps41ynis8683iayakg4907vd898";
|
||||
};
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/share/man/man1
|
||||
sed -e 's:/bin/bash:/usr/bin/env bash:' $src/yadm > $out/bin/yadm
|
||||
chmod 755 $out/bin/yadm
|
||||
install -m 644 $src/yadm.1 $out/share/man/man1/yadm.1
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/TheLocehiliosan/yadm";
|
||||
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.
|
||||
'';
|
||||
licence = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
@ -17609,6 +17609,8 @@ in
|
||||
qt = qt4;
|
||||
};
|
||||
|
||||
yadm = callPackage ../applications/version-management/yadm { };
|
||||
|
||||
yafc = callPackage ../applications/networking/yafc { };
|
||||
|
||||
yamdi = callPackage ../tools/video/yamdi { };
|
||||
|
Loading…
Reference in New Issue
Block a user