unfs3: 0.9.22 -> 0.10.0
Fixes the build.
This commit is contained in:
parent
9d84f4fe59
commit
aa357fcf6e
1 changed files with 25 additions and 10 deletions
|
@ -1,15 +1,27 @@
|
||||||
{ fetchurl, lib, stdenv, flex, bison }:
|
{ fetchFromGitHub
|
||||||
|
, lib
|
||||||
|
, stdenv
|
||||||
|
, flex
|
||||||
|
, bison
|
||||||
|
, autoreconfHook
|
||||||
|
, pkg-config
|
||||||
|
, libtirpc
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "unfs3";
|
pname = "unfs3";
|
||||||
version = "0.9.22";
|
version = "0.10.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/unfs3/${pname}-${version}.tar.gz";
|
owner = "unfs3";
|
||||||
sha256 = "076zkyqkn56q0a8n3h65n1a68fknk4hrrp6mbhajq5s1wp5248j8";
|
repo = pname;
|
||||||
|
rev = "refs/tags/${pname}-${version}";
|
||||||
|
hash = "sha256-5iAriIutBhwyZVS7AG2fnkrHOI7pNAKfYv062Cy0WXw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ flex bison ];
|
nativeBuildInputs = [ flex bison autoreconfHook pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ libtirpc ];
|
||||||
|
|
||||||
configureFlags = [ "--disable-shared" ];
|
configureFlags = [ "--disable-shared" ];
|
||||||
|
|
||||||
|
@ -25,13 +37,16 @@ stdenv.mkDerivation rec {
|
||||||
server.
|
server.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
homepage = "http://unfs3.sourceforge.net/";
|
# The old http://unfs3.sourceforge.net/ has a <meta>
|
||||||
|
# http-equiv="refresh" pointing here, so we can assume that
|
||||||
|
# whoever controls the old URL approves of the "unfs3" github
|
||||||
|
# account.
|
||||||
|
homepage = "https://unfs3.github.io/";
|
||||||
|
changelog = "https://raw.githubusercontent.com/unfs3/unfs3/unfs3-${version}/NEWS";
|
||||||
|
mainProgram = "unfsd";
|
||||||
|
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
|
|
||||||
# https://github.com/unfs3/unfs3/issues/13
|
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue