Skip to content

Commit

Permalink
xstow: 1.1.0 -> 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbr authored and nzbr committed Dec 5, 2023
1 parent 07b6ba4 commit 17771d6
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions pkgs/tools/misc/xstow/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
{ stdenv, lib, fetchurl, ncurses, autoreconfHook }:
{ stdenv
, lib
, fetchFromGitHub
, ncurses
, autoreconfHook
}:

stdenv.mkDerivation rec {
pname = "xstow";
version = "1.1.0";
version = "1.1.1";

src = fetchurl {
url = "http://downloads.sourceforge.net/sourceforge/${pname}/${pname}-${version}.tar.bz2";
sha256 = "sha256-wXQ5XSmogAt1torfarrqIU4nBYj69MGM/HBYqeIE+dw=";
src = fetchFromGitHub {
owner = "majorkingleo";
repo = "xstow";
rev = version;
fetchSubmodules = true;
hash = "sha256-c89+thw5N3Cgl1Ww+W7c3YsyhNJMLlreedvdWJFY3WY=";
};

nativeBuildInputs = [ autoreconfHook ];
Expand All @@ -23,11 +32,11 @@ stdenv.mkDerivation rec {
];

meta = with lib; {
broken = stdenv.isDarwin;
description = "A replacement of GNU Stow written in C++";
homepage = "https://xstow.sourceforge.net";
homepage = "https://github.com/majorkingleo/xstow";
license = licenses.gpl2Only;
maintainers = with maintainers; [ nzbr ];
broken = stdenv.isDarwin;
platforms = platforms.unix;
};
}

0 comments on commit 17771d6

Please sign in to comment.