commit
e868ff7625
@ -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";
|
||||
|
22
pkgs/tools/misc/xstow/default.nix
Normal file
22
pkgs/tools/misc/xstow/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user