scdoc: Update the URLs (homepage and download)
This commit is contained in:
parent
605d89504c
commit
2c881054f8
1 changed files with 5 additions and 6 deletions
|
@ -1,13 +1,12 @@
|
||||||
{ stdenv, fetchgit }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "scdoc-${version}";
|
name = "scdoc-${version}";
|
||||||
version = "1.5.1";
|
version = "1.5.1";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchurl {
|
||||||
url = "https://git.sr.ht/~sircmpwn/scdoc";
|
url = "https://git.sr.ht/~sircmpwn/scdoc/archive/${version}.tar.gz";
|
||||||
rev = version;
|
sha256 = "0hcwpyy97afwq40qn8jq75f1b2p0172lil1v0hs9a0rislpqk5nm";
|
||||||
sha256 = "0fm3x6ma1pzlajfcy32ayqrcab8lwl64nxfaqgc6019mxw87y1ja";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -26,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
scdoc is a simple man page generator written for POSIX systems written in
|
scdoc is a simple man page generator written for POSIX systems written in
|
||||||
C99.
|
C99.
|
||||||
'';
|
'';
|
||||||
homepage = https://git.sr.ht/~sircmpwn/scdoc/;
|
homepage = https://git.sr.ht/~sircmpwn/scdoc;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ primeos ];
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
|
Loading…
Reference in a new issue