robodoc: refactor

- rec-less
This commit is contained in:
Anderson Torres 2023-10-04 19:40:25 -03:00
parent b841c2253a
commit 01a3bf4709

View File

@ -4,14 +4,14 @@
, autoreconfHook
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "robodoc";
version = "4.99.44";
src = fetchFromGitHub {
owner = "gumpu";
repo = "ROBODoc";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-l3prSdaGhOvXmZfCPbsZJNocO7y20zJjLQpajRTJOqE=";
};
@ -48,6 +48,6 @@ stdenv.mkDerivation rec {
'';
license = with licenses; gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; all;
platforms = platforms.all;
};
}
})