20 lines
470 B
Nix
20 lines
470 B
Nix
{stdenv, fetchFromGitHub}: stdenv.mkDerivation rec {
|
|
pname = "modello";
|
|
version = "1.0";
|
|
outPom = "pom.xml";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "codehaus-plexus";
|
|
repo = "modello";
|
|
rev = "558762ce523e31c395f9043757686737d29f4fcb";
|
|
hash = "sha256-EMZU4EKcFglj8/G+PJ0ycBLZeCnyAMxWCnVVugAGPi4=";
|
|
};
|
|
|
|
patches = [./modello-pom.patch];
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp ./pom.xml $out/pom.xml
|
|
'';
|
|
}
|