I’m trying to use symlinkJoin
to build a (convenience) package, but it doesn’t seem to accept a version
and I’m not sure how to add it.
I have something like this
foo = symlinkJoin {
name = "foo-convenience";
version = "1.2.3";
paths = [awscli
amazon-ecr-credential-helper
...
];
};
but the resulting package doesn’t have the version I specify
How can I specify the version?