Merge pull request #141416 from nzbr/master

xstow: init on 1.0.2
This commit is contained in:
Ryan Burns 2021-10-14 00:40:54 -07:00 committed by GitHub
commit e868ff7625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View File

@ -8326,6 +8326,17 @@
githubId = 127548;
name = "Judson Lester";
};
nzbr = {
email = "nixos@nzbr.de";
github = "nzbr";
githubId = 7851175;
name = "nzbr";
matrix = "@nzbr:nzbr.de";
keys = [{
longkeyid = "rsa2048/0x6C78B50B97A42F8A";
fingerprint = "BF3A 3EE6 3144 2C5F C9FB 39A7 6C78 B50B 97A4 2F8A";
}];
};
nzhang-zh = {
email = "n.zhang.hp.au@gmail.com";
github = "nzhang-zh";

View File

@ -0,0 +1,22 @@
{ stdenv, lib, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "xstow";
version = "1.0.2";
src = fetchurl {
url = "http://downloads.sourceforge.net/sourceforge/${pname}/${pname}-${version}.tar.bz2";
sha256 = "6f041f19a5d71667f6a9436d56f5a50646b6b8c055ef5ae0813dcecb35a3c6ef";
};
buildInputs = [
ncurses
];
meta = with lib; {
description = "A replacement of GNU Stow written in C++";
homepage = "http://xstow.sourceforge.net";
license = licenses.gpl2Only;
maintainers = with maintainers; [ nzbr ];
platforms = platforms.unix;
};
}

View File

@ -9552,6 +9552,7 @@ with pkgs;
storeBackup = callPackage ../tools/backup/store-backup { };
stow = callPackage ../tools/misc/stow { };
xstow = callPackage ../tools/misc/xstow { };
stun = callPackage ../tools/networking/stun { };