mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
xstow: init at 1.0.2
This commit is contained in:
parent
4b692c74ac
commit
bc21b6e58b
2 changed files with 23 additions and 0 deletions
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;
|
||||
};
|
||||
}
|
|
@ -9550,6 +9550,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 a new issue