BefatorNix/java/plexus/plexus-pom_1_0.nix
2025-10-05 22:57:02 +02:00

21 lines
498 B
Nix

{stdenv, fetchFromGitHub}: stdenv.mkDerivation rec {
pname = "plexus-root";
version = "1.0";
outPom = "pom.xml";
org = "plexus";
src = fetchFromGitHub {
owner = "codehaus-plexus";
repo = "plexus-pom";
rev = "3228cf9f8b27e5305c7f3ab9f038f5224b5d4ebe";
hash = "sha256-Sz/xFi8yEhfTBAVryxGH1MDQ42HPEW/wwbwMtpQp8Kc=";
};
patches = [./plexus-utils.patch];
installPhase = ''
mkdir $out
cp ./pom.xml $out/pom.xml
'';
}